你甚至可以试试这个
CATransition *animation = [CATransition animation];
animation.delegate = self;
animation.duration = 1;
animation.timingFunction = UIViewAnimationCurveEaseInOut;
animation.fillMode = kCAFillModeForwards;
animation.endProgress = 1;
animation.removedOnCompletion = NO;
animation.type = @"oglFlip";
[yourView.layer addAnimation:animation forKey:@"animation"];
如果您愿意,可以使用更多动画类型:
animation.type = @"cube";
animation.type = @"suckEffect";
animation.type = @"suckEffect";
animation.type = @"pageCurl";
animation.type = @"pageUnCurl";
animation.type = @"cameraIrisHollowOpen ";
animation.type = @"cameraIrisHollowClose ";