码迷,mamicode.com
首页 >  
搜索关键字:cgpoint    ( 294个结果
UITouch触摸事件
UITouch触摸事件 主要为三个方法 1.-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{2.3. UITouch *touch = [touches anyObject];4. CGPoint point = [to
分类:其他好文   时间:2016-02-22 23:31:36    阅读次数:328
UI整理-----part4--UIScrollView
(1)UIScrollView可以用于显示多于一个屏幕的内容,超出屏幕范围的内容可以通过滑动进行查看。 (2)常见属性: @property(nonatomic)CGPoint contentOffset; UIScrollView当前滚动位置 @property(nonatomic)CGSize 
分类:其他好文   时间:2016-02-20 21:36:21    阅读次数:183
contentOffset、contentSize和contentInset
1、UIScrollView@property(nonatomic)CGPoint contentOffset;这个属性用来表示UIScrollView滚动的位置 @property(nonatomic)CGSize contentSize;这个属性用来表示UIScrollView内容的尺寸,滚动范
分类:其他好文   时间:2016-02-20 21:28:08    阅读次数:230
CALayer 易混淆的两个属性 - position和anchorPoint
1.简单介绍 CALayer有2个非常重要的属性:position和anchorPoint @property CGPoint position; 用来设置CALayer在父层中的位置,以父层的左上角为原点(0, 0) @property CGPoint anchorPoint; 称为"定位点"、"
分类:其他好文   时间:2016-02-18 21:19:57    阅读次数:196
IOS杂记
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event { //Using code from http://stackoverflow.com/questions/1042830/retrieving-a-pixel-alpha-
分类:移动开发   时间:2016-02-14 11:33:48    阅读次数:249
UITouch手指滑动屏幕,屏幕跟着移动
1.//当手指在屏幕上滑动时 - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{ UITouch *touch = [touches anyObject]; CGPoint previousPoint = [touch
分类:移动开发   时间:2016-02-05 22:17:47    阅读次数:220
UIScollView
iOS开发UIScrollView使用详解一、ScrollView常用方法和属性@property(nonatomic)CGPoint contentOffset;设置滚动的偏移量@property(nonatomic)CGSize contentSize;设置滑动区域@property(nonat
分类:其他好文   时间:2016-01-29 12:06:34    阅读次数:236
iOS---实现在屏幕上实时绘图的简单效果---CAShaperLayer和UIBezierPath的简单运用
首先,声明几个属性 @property(nonatomic,strong)UIBezierPath * beizer; @property(nonatomic,assign)CGPoint startPoint; @property(nonatomic,assign)CGPoint movePoin
分类:移动开发   时间:2016-01-28 00:32:12    阅读次数:264
UIView中的坐标转换
//将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值- (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view;//将像素point从view中转换到当前视图中,返回在当前视图中的像素值- (...
分类:其他好文   时间:2016-01-23 21:08:23    阅读次数:131
两个线性布局的方法
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect这个方法用来设置rect范围内所有的item的属性值UICollectionViewLayoutAttributes:用来表示任意一个item属性- (CGPoint)targetC...
分类:其他好文   时间:2016-01-21 23:28:27    阅读次数:194
294条   上一页 1 ... 8 9 10 11 12 ... 30 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!