美文网首页
动画执行

动画执行

作者: 指尖的跳动 | 来源:发表于2017-07-29 11:17 被阅读34次

[UIView animateWithDuration:0.1f delay:0 options:UIViewAnimationOptionBeginFromCurrentState | UIViewAnimationOptionCurveEaseInOut

animations:^{

self.imageView.transform = CGAffineTransformMakeScale(1.5f, 1.5f);

} completion:^(BOOL finished) {

[UIView animateWithDuration:0.1f delay:0 options:UIViewAnimationOptionBeginFromCurrentState | UIViewAnimationOptionCurveEaseInOut

animations:^{

self.imageView.transform = CGAffineTransformMakeScale(0.9, 0.9);

} completion:^(BOOL finished) {

[UIView animateWithDuration:0.1f delay:0 options:UIViewAnimationOptionBeginFromCurrentState | UIViewAnimationOptionCurveEaseInOut

animations:^{

self.imageView.transform = CGAffineTransformMakeScale(1.0f, 1.0f);

} completion:^(BOOL finished) {

completion(self.isSelected);

}];

}];

}

];

相关文章

网友评论

      本文标题:动画执行

      本文链接:https://www.haomeiwen.com/subject/dmwqlxtx.html