博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转】找了好久,IOS实现半翻页功能
阅读量:6234 次
发布时间:2019-06-22

本文共 3159 字,大约阅读时间需要 10 分钟。

- (void)applicationDidFinishLaunching:(UIApplication *)application {    

    // Override point for customization after application launch
PageViewController *pvController = [[PageViewController alloc] init];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:pvController];  //加载有标题的view
    navController.navigationBar.tintColor=[UIColor redColor]; //颜色设置
[window addSubview:navController.view];
    [window makeKeyAndVisible];

}

---------------------------------------------------------------------------------------------------------------------------------------------------------------------

- (id)init

{
if (!(self = [super init])) 
return self;
self.title = @"翻页 Demo";
return self;
}
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
UIView *contentView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
self.view = contentView;  //没有xib的时候需要
    
  UIView *frontView1 = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 416.0f)];
    //frontView1.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"back1.png"]];  
    frontView1 = [[[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
    frontView1.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"back1.jpg"]];  
    [self.view addSubview:frontView1];
    
    UIView *frontView = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 416.0f)];
    frontView.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"back2.jpg"]];
    [self.view addSubview:frontView]; 
   switchView = [[[UISwitch alloc] init] autorelease];
  [switchView setCenter:CGPointMake(200.0f,350.0f)];
  [frontView1 addSubview:switchView];
    
switchStatusLabel = [[[UILabel alloc] initWithFrame:CGRectMake(250.0f, 250.0f, 50.0f, 30.0f)] autorelease];
[frontView addSubview:switchStatusLabel];
[switchStatusLabel setTextAlignment:UITextAlignmentCenter];
switchStatusLabel.text=@"OFF";
isCurl=NO;
self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc]   //按钮的初始化及触发条件设置
   initWithTitle:@"Curl" 
   style:UIBarButtonItemStylePlain 
   target:self 
                                            action:@selector(doCurl)] autorelease];
}
- (void) doCurl
{
//创建CATransition对象
CATransition *animation = [CATransition animation];
//相关参数设置
[animation setDelegate:self];
[animation setSpeed:3.0f];
[animation setDuration:1.0f];
[animation setTimingFunction:UIViewAnimationCurveEaseInOut];
//向上卷的参数
if(!isCurl)
{
//设置动画类型为pageCurl,并只卷一半
[animation setType:@"pageCurl"];   
animation.endProgress=0.7;
}
//向下卷的参数
else
{
//设置动画类型为pageUnCurl,并从一半开始向下卷
[animation setType:@"pageUnCurl"];
animation.startProgress=0.7;
}
//卷的过程完成后停止,并且不从层中移除动画
[animation setFillMode:kCAFillModeForwards];
[animation setSubtype:kCATransitionFromBottom];
[animation setRemovedOnCompletion:NO];
isCurl=!isCurl;
[self.view exchangeSubviewAtIndex:0 withSubviewAtIndex:1];
[[self.view layer] addAnimation:animation forKey:@"pageCurlAnimation"];  //翻页效果
if([switchView isOn])
{
switchStatusLabel.text=@"ON";
}
else
{
switchStatusLabel.text=@"OFF";
}

}

本文转自编程小翁博客园博客,原文链接:http://www.cnblogs.com/wengzilin/archive/2012/03/28/2421523.html,如需转载请自行联系原作者

你可能感兴趣的文章
js:原生单张图片延迟加载(图片自己找)
查看>>
关于iOS中委托(Delegate)的几点看法
查看>>
读书笔记-Java高并发程序设计(一)
查看>>
spring cloud微服务分布式云架构 - Spring Cloud简介
查看>>
用vue-cli3导入外部的iconfont.css图标样式遇到的坑:These relative modules were not found:...
查看>>
ObjC RunLoop简析
查看>>
李笑来哭了,韭菜财经们笑了
查看>>
《快学 Go 语言》第 15 课 —— 反射
查看>>
既生 Redis 何生 LevelDB ?
查看>>
给自己出的iOS面试题
查看>>
2.1.5 Python元类深刻理解(metaclass)
查看>>
Node.js 系列 - 搭建静态资源服务器
查看>>
ScratchView:一步步打造万能的 Android 刮奖效果控件
查看>>
万绿从中一点蓝,一篇无用的文章
查看>>
如何在1到100的整数数组上找到缺失的数字
查看>>
BBC 新闻数据可视化 Cookbook
查看>>
力扣(LeetCode)22
查看>>
一秒搭建gitbook
查看>>
react 与 Vue的一些比较
查看>>
vue-cli3环境变量与分环境打包
查看>>