pushViewController自定义动画
CATransition*transition=[CATransitionanimation];transition.duration=1.0f;transition.timingFunction=[CAMediaTimingFunctionfunctionWithName:kCAMediaTimingFunctionEaseInEaseOut];transition.type=@"cube";transition.subtype=kCATransitionFromRight;transition.delegate=self;[self.navigationController.view.layeraddAnimation:transitionforKey:nil];FirstViewController*firstViewController=[[DemoViewControlleralloc]init];[self.navigationControllerpushViewController:firstViewControlleranimated:YES];其中的动画类型有:animation.type=kCATransitionFade;animation.type=kCATransitionPush;animation.type=kCATransitionReveal;animation.type=kCATransitionMoveIn;animation.type=@"cube";animation.type=@"suckEffect";//页面旋转animation.type=@"oglFlip";//水波纹animation.type=@"rippleEffect";animation.type=@"pageCurl";animation.type=@"pageUnCurl";animation.type=@"cameraIrisHollowOpen";animation.type=@"cameraIrisHollowClose";
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。