//将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值- (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view;//将像素point从view中转换到当前视图中,返回在当前视图中的像素值- (...
分类:
移动开发 时间:
2014-09-24 11:31:26
阅读次数:
194
------Java培训、Android培训、iOS培训、.Net培训、期待与您交流! -------oc中的结构体主要有CGPoint,CGSize,CGRect,NSRange;/* Points. */struct CGPoint { CGFloat x; CGFloat y;};typede...
分类:
其他好文 时间:
2014-09-22 13:29:32
阅读次数:
185
一、响应者链条的事件响应过程: 1、模拟视图view上按钮button被点击的事件响应:二、hitTest方法的递归调用1、-(UIView*)hitTest:(CGPoint) withEvent:(UIEvent*)event;这个方法是系统底层专门用来递归遍历是哪一个视图应对事件做出响应的方....
分类:
移动开发 时间:
2014-09-21 01:33:09
阅读次数:
420
创建视图UIView*view=[[UIViewalloc]initWithFrame:CGRectMake(220,100,100,100)];view.backgroundColor=[UIColorgreenColor];[self.windowaddSubview:view];[viewrelease];view1.centercenter属性获取视图的中心点.NSStringFromCGPoint将一个CGPoint类型的结构体变量转为字符..
分类:
其他好文 时间:
2014-09-20 02:27:16
阅读次数:
160
这些是在CGGeometry.h里的 CGPoint、CGSize、CGRect、CGRectEdge实际上都是结构体struct CGPoint { CGFloat x; CGFloat y;};typedef struct CGPoint CGPoint;struct CGSize { CGFl...
分类:
其他好文 时间:
2014-09-18 13:07:15
阅读次数:
243
属性作用CGPoint contentOffSet监控目前滚动的位置CGSize contentSize滚动范围的大小UIEdgeInsets contentInset视图在scrollView中的位置id delegate 设置协议 BOOL directionalL...
分类:
其他好文 时间:
2014-09-17 11:44:12
阅读次数:
133
一、重写 DrwaRect-(void)drawRect:(CGRect)rect{ CGRect bounds = self.bounds; CGPoint center; center.x = bounds.origin.x + bounds.size.width / ...
分类:
其他好文 时间:
2014-09-16 14:12:50
阅读次数:
200
/** * 根据圆心的坐标点、半径、当前手势所在的坐标点,计算出圆的运动轨迹坐标 * @param radius 圆心半径 * @param centerCircle 圆心的坐标点 * @param currentPoint 当前的手势所在的坐标点 * @return CGPoint 返回...
分类:
移动开发 时间:
2014-09-12 11:39:33
阅读次数:
216
一、Foundation框架常用结构体NSRange\CGRange、NSPoint\CGPoint、NSSize\CGSize、 NSRect\CGRect 的使用1. 基本使用: //NSRange的使用 NSRange r1 = NSMakeRange(2, 4); //第一个参数为...
分类:
其他好文 时间:
2014-09-02 01:33:33
阅读次数:
177
-(void)scrollByTimer{ CGPoint oldoffset = cellScrollView.contentOffset; CGPoint newOffset = CGPointMake(cellScrollView.contentOffset.x+320, cellScro.....
分类:
其他好文 时间:
2014-08-20 11:47:06
阅读次数:
180