【代码札记】正方形转换

【代码笔记】正方形转换

一,工程图。

【代码札记】正方形转换

二,代码。

RootViewControlle.m

【代码札记】正方形转换
//点击任何处,页面翻转
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    FirstViewController *first=[[FirstViewController alloc]init];
    
    CATransition *animation = [CATransition animation];
    [animation setType:@"cube"];
    [animation setSubtype:kCATransitionFromLeft];
    [animation setDuration:1.0f];
    [self.navigationController.view.layer addAnimation:animation forKey:@"test"];
    
    [self.navigationController pushViewController:first animated:NO];

    
}
【代码札记】正方形转换