****动画组// 核心动画都是假象,不能改变layer的真实属性的值// 展示的位置和实际的位置不同。实际位置永远在最开始位置#import "HMViewController.h"@interface HMViewController ()@property (weak, nonatomic) ...
分类:
移动开发 时间:
2015-09-06 19:57:15
阅读次数:
138
*****HMViewController.m#import "HMViewController.h"#import "HMWheelView.h"@interface HMViewController ()@property (nonatomic, weak) HMWheelView *wheel...
分类:
移动开发 时间:
2015-09-06 19:56:03
阅读次数:
218
***翻页效果#import "HMViewController.h"@interface HMViewController ()@property (weak, nonatomic) IBOutlet UIImageView *imageView;@property (nonatomic, ass...
分类:
移动开发 时间:
2015-09-06 19:48:22
阅读次数:
184
****#import "HMViewController.h"// 每秒秒针转6度#define perSecendA 6// 每分钟分针转6度#define perMinuteA 6// 每小时时针转6度#define perHourA 30// 每分钟时针转6度#define perMinut...
分类:
移动开发 时间:
2015-09-06 17:59:24
阅读次数:
367
****动画效果- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ [UIView animateWithDuration:1 animations:^{ // 旋转// ...
分类:
移动开发 时间:
2015-09-06 17:57:41
阅读次数:
547
1、核心动画保留执行动画之后的效果 // 让图层保持动画执行完毕之后的状态 anim.removedOnCompletion = NO; anim.fillMode = kCAFillModeForwards;2、核心动画的缺点:所看到的都是假象,实际的本质是没变的 在动画执行的...
分类:
其他好文 时间:
2015-09-04 18:14:38
阅读次数:
150
清晨接连翻阅了几篇关于UIView和CALayer的博文,要么是上来一排排的代码(破坏了优雅的气氛),要么是题不达意(喂,what are you ‘写啥’ 嘞),看的我是雨里雾里,当然也有大牛辛辛苦苦的写的优秀文章,只是最近小编也正在学习“核心动画”,因为核心动画操作的对象不是UIView,而是....
分类:
其他好文 时间:
2015-09-04 09:54:15
阅读次数:
169
清晨接连翻阅了几篇关于UIView和CALayer的博文,要么是上来一排排的代码(破坏了优雅的气氛),要么是题不达意(喂,what are you ‘写啥’ 嘞),看的我是雨里雾里,当然也有大牛辛辛苦苦的写的优秀文章,只是最近小编也正在学习“核心动画”,因为核心动画操作的对象不是UIView,而.....
分类:
其他好文 时间:
2015-09-04 07:27:17
阅读次数:
217
"MindManager"学习iOS系列之"CAAnimation-核心动画"详解,思维导图内展示了CAAnimation-核心动画的大多数基本功能和知识,每个part都有代码讲解,展示出CAAnimation-核心动画的清晰轮廓,编者提供了"JPG"、"SWF"、"PDF"、"Word"、"Mma...
分类:
移动开发 时间:
2015-09-02 01:59:50
阅读次数:
208
1、概述Core Animation是一组非常强大的动画处理API,使用它能做出非常炫丽的动画效果,而且往往是事半功倍,使用它需要先添加QuartzCore.framework和引入对应的框架。特别注意的是核心动画的动画效果只是“假象”,产生动画的那个view实际上并未发生任何变化。开发步骤:第一步...
分类:
移动开发 时间:
2015-08-31 21:40:43
阅读次数:
272