博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
核心动画-翻页效果的实现
阅读量:4985 次
发布时间:2019-06-12

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

1、先导入

#import <QuartzCore/QuartzCore.h>框架,并在工程中导入该框架

2、

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {    self.imageView.image = [UIImage imageNamed:[NSString stringWithFormat:@"%i.jpg", _imageIndex]];    _imageIndex++;    if (_imageIndex > 9) {        _imageIndex = 1;    }        CATransition *anim = [CATransition animation];    // 动画类型    anim.type = @"pageCurl";    // 过渡方向    anim.subtype = kCATransitionFromRight;// 动画延迟    anim.duration = 0.5;// 添加动画    [self.view.layer addAnimation:anim forKey:nil];}

 

转载于:https://www.cnblogs.com/angongIT/p/4166819.html

你可能感兴趣的文章
C#套打
查看>>
PolyCluster: Minimum Fragment Disagreement Clustering for Polyploid Phasing 多聚类:用于多倍体的最小碎片不一致聚类...
查看>>
【每日进步】July 2012
查看>>
327 作业
查看>>
sql 取汉字首字母
查看>>
javascript 封装ajax(多版本)
查看>>
bzoj4034: [HAOI2015]树上操作(树剖)
查看>>
android-Activity
查看>>
${sessionScope.user}的使用方法
查看>>
IOS断点下载
查看>>
Steal 偷天换日 题解(From luoguBlog)
查看>>
Hadoop HDFS学习总结
查看>>
C#wxpay和alipay
查看>>
Combination Sum
查看>>
WCF开发框架形成之旅---结合代码生成工具实现快速开发
查看>>
Spring事务管理
查看>>
JS||JQUERY常用语法
查看>>
talend hive数据导入到mysql中
查看>>
ORA-01093: ALTER DATABASE CLOSE only permitted with no sessions connected
查看>>
linux下mysql配置文件my.cnf详解
查看>>