iOS UIButton按钮颜色渐变动画

来源:互联网 发布:山东多趣网络靠谱么 编辑:程序博客网 时间:2024/06/13 06:03
   self.rotateButton.imageView.alpha = 0.2;     [UIView animateWithDuration:0.2                     animations:^{                         self.rotateButton.imageView.alpha = 0.5;                     }completion:^(BOOL finish){                         [UIView animateWithDuration:0.2                                          animations:^{                                              self.rotateButton.imageView.alpha = 0.7;                                          }completion:^(BOOL finish){                                              self.rotateButton.imageView.alpha = 1.0;                                          }];                     }];}


    [UIView animateWithDuration: 0.15 delay: 0 options: UIViewAnimationOptionCurveEaseInOut animations: ^{        [self rotateLocation:pLocation];        self.rotateButton.imageView.alpha = 0.5;    } completion: ^(BOOL finished) {        [UIView animateWithDuration: 0.15 animations: ^{            self.rotateButton.imageView.alpha = 1.0;        }];    }];


0 0
原创粉丝点击