码迷,mamicode.com
首页 > 其他好文 > 详细

翻页效果的实现(仿满座团购主页)

时间:2014-10-20 17:08:10      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   sp   div   2014   

 

整体实现效果:

 

点击root,也就是红色的任何处,页面会像翻书一样翻转。翻转到first,也就是蓝色的界面。当点击顶部root页面部分的时候,页面会重新翻到root,也就是红色的界面。

 

 

开始时候的效果图:

bubuko.com,布布扣

点击root任何处的效果图:

bubuko.com,布布扣

点击first顶部的效果图:

bubuko.com,布布扣

代码:

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    //点击root,也就是红色的任何处,页面会像翻书一样翻转。翻转到first,也就是蓝色的界面。当点击顶部root页面部分的时候,页面会重新翻到root,也就是红色的界面。
   
    FirstViewController *firstView=[[FirstViewController alloc]init];
    UINavigationController *nav=[[UINavigationController alloc] initWithRootViewController:firstView];
    nav.modalTransitionStyle=UIModalTransitionStylePartialCurl;
    [self.navigationController presentViewController:nav animated:YES completion:nil];
}

 

翻页效果的实现(仿满座团购主页)

标签:style   blog   http   color   io   ar   sp   div   2014   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4037382.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!