标签:http color os width io for
UIImageView加抖动效果,布布扣,bubuko.com
UIImageView加抖动效果
原文地址:http://www.cnblogs.com/lingzeng/p/3856415.html
[UIView animateWithDuration:0 delay:0 options:UIViewAnimationTransitionNone animations:^(void){
logInWindow.frame = rect1;
} completion:^(BOOL finshed){
[UIView animateWithDuration:0.01 delay:0 options:UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat animations:^(void){
[UIView setAnimationRepeatCount:20];
logInWindow.frame = firstRect;
} completion:^(BOOL finshed){
}]; }];