calayer=[CALayer layer]; // SCMylayer *layer = [SCMylayer layer]; //2.设置layer的属性 calayer.backgroundColor=[UIColor clearColor].CGColor; ...
分类:
其他好文 时间:
2015-09-08 12:20:45
阅读次数:
171
转载:http://www.cnblogs.com/Twisted-Fate/p/4773544.html1.UIKit使用UIResponder作为响应对象,来响应系统传递过来的事 件并进行处理。UIApplication、UIViewController、UIView、和所有从UIView派生出...
分类:
其他好文 时间:
2015-09-07 15:36:52
阅读次数:
186
CoreAnimation(一)CALayerCoreAnimation 算是一个大话题 ,要实现很多炫酷的动画,必须掌握它,掌握它之前 ,先来了解CALayer — 图层 CALayer我们平常都是用UIView 来构建应用,CALayer 是图层的一个属性 ,view.layer . 它和UIview一样都是一些被层级关系树管理的矩形块 ,如果玩儿过PS ,就会对图层的概念比较清晰 。CALay...
分类:
编程语言 时间:
2015-09-07 01:51:42
阅读次数:
272
*******#import "HMViewController.h"@interface HMViewController ()@property (nonatomic, weak) CALayer *layer;@end@implementation HMViewController- (voi...
分类:
移动开发 时间:
2015-09-06 18:20:37
阅读次数:
173
- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. // 创建一个图层 CALayer *laye...
分类:
移动开发 时间:
2015-09-06 18:17:49
阅读次数:
156
******隐式动画(手指拖拽Layer)#import "HMViewController.h"@interface HMViewController ()@property (nonatomic, weak) CALayer *layer;@end@implementation HMViewCo...
分类:
移动开发 时间:
2015-09-06 18:12:10
阅读次数:
162
****#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
面试总结(一)1.UIWindow和UIView和 CALayer 的联系和区别?答:UIView是视图的基类,UIViewController是视图控制器的基类,UIResponder是表示一个可以在屏幕上响应触摸事件的对象;UIwindow是UIView的子类,UIWindow的主要作用:一是提...
分类:
移动开发 时间:
2015-09-05 00:07:48
阅读次数:
192
一、position和anchorPoint1.简单介绍CALayer有2个非常重要的属性:position和anchorPoint@property CGPoint position;用来设置CALayer在父层中的位置以父层的左上角为原点(0, 0)@property CGPoint ancho...
分类:
其他好文 时间:
2015-09-04 16:59:33
阅读次数:
152
清晨接连翻阅了几篇关于UIView和CALayer的博文,要么是上来一排排的代码(破坏了优雅的气氛),要么是题不达意(喂,what are you ‘写啥’ 嘞),看的我是雨里雾里,当然也有大牛辛辛苦苦的写的优秀文章,只是最近小编也正在学习“核心动画”,因为核心动画操作的对象不是UIView,而是....
分类:
其他好文 时间:
2015-09-04 09:54:15
阅读次数:
169