- (UIColor *)colorAtPixel:(CGPoint)point { // Cancel if point is outside image coordinates if (!CGRectContainsPoint(CGRectMake(0.0f, 0.0f, self.size.w ...
分类:
移动开发 时间:
2017-07-24 10:06:43
阅读次数:
198
仅做记录,一个函数和字符串之间的互相转换 方法如下: 例子: 结构体转字符串: 字符串转 结构体: ...
分类:
移动开发 时间:
2017-07-21 12:30:07
阅读次数:
184
// 将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值 - (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view; // 将像素point从view中转换到当前视图中,返回在当前视图中的像素 ...
分类:
移动开发 时间:
2017-07-11 11:20:45
阅读次数:
261
1 回弹机制:bounces alwaysBounceHorizontal alwaysBounceVerticalbounces:描述的当scrollview的显示超过内容区域的边缘以及返回时,是否有弹性,默认值为YES。值为YES的时候,意味着到达contentSize所描绘的的边界的时候,拖动 ...
分类:
移动开发 时间:
2017-07-07 13:06:18
阅读次数:
242
UIScrollView: 1, CGPoint contentOffset 内容偏移量 2,CGSize contentSize 可滑动范围 3, UIEdgeInsets contentInset 内边距设置 4, delegate 代理 5, BOOL directionalLockEnabl ...
分类:
其他好文 时间:
2017-06-28 14:22:35
阅读次数:
154
CGPoint accountCenter =firstBtn.center; CGPoint psdCenter = secondBtn.center; accountCenter.x -= 600; psdCenter.x -= 600; firstBtn.center = accountCen ...
分类:
其他好文 时间:
2017-06-28 10:53:37
阅读次数:
176
作用:寻找最适合的View 参数:当前手指所在的点.产生的事件 返回值:返回谁, 谁就是最适合的View. 什么时候用调用:只要一个事件,传递给一个控件时, 就会调用这个控件的hitTest方法 -(UIView *)hitTest:(CGPoint)point withEvent:(UIEvent ...
分类:
其他好文 时间:
2017-06-11 00:58:34
阅读次数:
316
//scrollView滚动时,就调用该方法。任何offset值改变都调用该方法。即滚动过程中,调用多次 - (void)scrollViewDidScroll:(UIScrollView *)scrollView { NSLog(@"scrollViewDidScroll"); CGPoint p ...
分类:
移动开发 时间:
2017-05-31 17:35:25
阅读次数:
240
#pragma mark 判断两条直线是否相交 + (BOOL)checkLineIntersection:(CGPoint)p1 p2:(CGPoint)p2 p3:(CGPoint)p3 p4:(CGPoint)p4 { CGFloat denominator = (p4.y - p3.y) * ...
分类:
其他好文 时间:
2017-05-18 20:11:59
阅读次数:
153
// 将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值 - (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view; // 将像素point从view中转换到当前视图中,返回在当前视图中的像素 ...
分类:
其他好文 时间:
2017-05-12 17:34:45
阅读次数:
132