objc.io 学习 摘自原处修改对层的属性详细了解可见这里@interface ClockFace : CAShapeLayer@property (nonatomic, strong) NSDate *time;@end@interface ClockFace ()@property (nona...
分类:
其他好文 时间:
2015-03-31 21:40:58
阅读次数:
145
为按钮设置边框以及边框颜色通过storyboard,这里使用了Category为CALayer添加了一个UIColor类型的boderColorFromUIColor。...
分类:
其他好文 时间:
2015-03-31 12:56:03
阅读次数:
104
#import "ViewController.h"@interface ViewController ()@property(nonatomic,strong)CALayer *imageLayer;@property(nonatomic,strong)CALayer *maskLayer;@pr...
分类:
其他好文 时间:
2015-03-31 10:46:38
阅读次数:
128
#import "ViewController.h"@interface ViewController ()@property(nonatomic,strong)CALayer *imageLayer;@end@implementation ViewController- (void)viewDid...
分类:
其他好文 时间:
2015-03-31 00:25:10
阅读次数:
166
支持iOS6/6 Plus的时候碰到这样一个问题:塞在UITableViewCell里的UIPageControl居中设置失败了,偏右刚刚设置时下断点查看(6Plus模拟器):>运行后:>好奇在什么时候被改变的,考虑搞个内存修改断点,上lldb,听从忠告检测CALayer的frame改动而不是UIV...
分类:
其他好文 时间:
2015-03-30 20:36:29
阅读次数:
619
原文地址:http://www.raywenderlich.com/2502/calayers-tutorial-for-ios-introduction-to-calayers-tutorial如果你已经在iPhone上做过开发,你可能对UIView和它的子类-Button,text,slider...
分类:
其他好文 时间:
2015-03-30 12:39:26
阅读次数:
137
CALayer的寄宿图(即图层中包含的图)CALayer 属性1.contents:layer.contents=(__bridgeid)image.CGImage;2.contentGravity:同UIView contentModecontentsGravity的目的是为了决定内容在图层的边界...
分类:
移动开发 时间:
2015-03-19 13:05:04
阅读次数:
145
关于CALayer的疑惑首先CALayer是定义在QuartzCore框架中的CGImageRef、CGColorRef两种数据类型是定义在CoreGraphics框架中的UIColor、UIImage是定义在UIKit框架中的其次QuartzCore框架和CoreGraphics框架是可以跨平台使...
分类:
其他好文 时间:
2015-03-15 13:49:01
阅读次数:
106
- (void)viewDidLoad{ [superviewDidLoad]; //如果一个控制是另外一个控件的子控件,那么这个控件中的layer也是另外一个控件的子layer// NSLog(@"star - %@", self.view.layer.sublayers); CALayer...
分类:
其他好文 时间:
2015-03-15 13:42:53
阅读次数:
118
CALayer有2个非常重要的属性:position和anchorPoint@propertyCGPointposition;用来设置CALayer在父层中的位置以父层的左上角为原点(0, 0)@propertyCGPointanchorPoint;称为“定位点”、“锚点”决定着CALayer身上的...
分类:
其他好文 时间:
2015-03-15 13:41:49
阅读次数:
91