标签:gif 工程 ade anim http mtr blog code sel
一,工程图。
二,代码。
//点击任何处跳转到页面
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
CATransition* animTrans = [CATransition animation] ;
animTrans.type = kCATransitionFade;
animTrans.duration = 1;
animTrans.timingFunction =[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];
[self.navigationController.view.layer addAnimation:animTrans forKey:nil];
FirstViewController *first = [[FirstViewController alloc]init];
[self.navigationController pushViewController:first animated:NO];
}
标签:gif 工程 ade anim http mtr blog code sel
原文地址:http://www.cnblogs.com/yang-guang-girl/p/7068212.html