CATransition *animation = [CATransition animation];
animation.duration = 1.5;
[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];
animation.type = @"oglFlip";
animation.subtype = kCATransitionFromRight;
[weakself.coverImageView.layer addAnimation:animation forKey:nil];
时间: 2024-11-04 13:48:33