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
(1)UIScrollView可以用于显示多于一个屏幕的内容,超出屏幕范围的内容可以通过滑动进行查看。 (2)常见属性: @property(nonatomic)CGPoint contentOffset; UIScrollView当前滚动位置 @property(nonatomic)CGSize
分类:
其他好文 时间:
2016-02-20 21:36:21
阅读次数:
183
1、UIScrollView@property(nonatomic)CGPoint contentOffset;这个属性用来表示UIScrollView滚动的位置 @property(nonatomic)CGSize contentSize;这个属性用来表示UIScrollView内容的尺寸,滚动范
分类:
其他好文 时间:
2016-02-20 21:28:08
阅读次数:
230
1.简单介绍 CALayer有2个非常重要的属性:position和anchorPoint @property CGPoint position; 用来设置CALayer在父层中的位置,以父层的左上角为原点(0, 0) @property CGPoint anchorPoint; 称为"定位点"、"
分类:
其他好文 时间:
2016-02-18 21:19:57
阅读次数:
196
- (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
1.//当手指在屏幕上滑动时 - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{ UITouch *touch = [touches anyObject]; CGPoint previousPoint = [touch
分类:
移动开发 时间:
2016-02-05 22:17:47
阅读次数:
220
iOS开发UIScrollView使用详解一、ScrollView常用方法和属性@property(nonatomic)CGPoint contentOffset;设置滚动的偏移量@property(nonatomic)CGSize contentSize;设置滑动区域@property(nonat
分类:
其他好文 时间:
2016-01-29 12:06:34
阅读次数:
236
首先,声明几个属性 @property(nonatomic,strong)UIBezierPath * beizer; @property(nonatomic,assign)CGPoint startPoint; @property(nonatomic,assign)CGPoint movePoin
分类:
移动开发 时间:
2016-01-28 00:32:12
阅读次数:
264
//将像素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