摘要:
使用之前请从Apple网站下载示例:点此下载然后将Reachability.h 和Reachability.m 加到自己的项目中,并引用SystemConfiguration.framework,就可以使用了。 Reachability *r = [Reachability reachabil... 阅读全文
摘要:
__block int timeout = 60;//倒计时时间 dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); dispatch_source_t time... 阅读全文
摘要:
edgesForExtendedLayout是一个类型为UIExtendedEdge的属性,指定边缘要延伸的方向。因为iOS7鼓励全屏布局,所以它的默认值是UIRectEdgeAll——四周边缘都延伸,就是说,即使视图中上有navigationBar,下有tabBar,那么视图仍然会延伸覆盖到四周的... 阅读全文
摘要:
//是不是过了指定的天数- (BOOL) isAfterDays:(int) days { NSDate * sendDate = [NSDate date]; NSDateFormatter * dateFormatter = [[NSDateFormatter alloc] init... 阅读全文
摘要:
.m文件相关方法@interface DemoViewController () { UITextField * _activeField; //作为第一响应者的UITextField CGRect _originFrame; //scrollView的初始frame}... 阅读全文
摘要:
@interface UINavigationController (CustomTransition)- (void) pushWithCustomAnimation:(UIViewController *) controller;- (void) popWithCustomAnimation;@... 阅读全文
摘要:
1、将图片方向旋转为up方向-(UIImage *)rotateImage:(UIImage *)aImage{ CGImageRef imgRef = aImage.CGImage; CGFloat width = CGImageGetWidth(imgRef); CGF... 阅读全文
摘要:
开发中,遇到计算时间差的问题,利用CFAbsoluteTimeGetCurrent()可以很方便的进行计算实例:场景:类似购物车中修改商品数量的功能,如下图所示,要求,修改完的数量,要同步到服务器。分析:如果点击“+”或者“-”,立即进行服务器同步的话,代价貌似有些高,所以采用延时提交的方法:“连续... 阅读全文
摘要:
1、iOS布局格式语言(Visual Format Language)常见符号H:水平布局(默认)V:垂直布局|superView的边界,水平布局模式下,放在左边是左边界,放在右边是右边界;处置布局模式下,则相应的为上边界和下边界- 标准间隔距离-N-长度为N像素点的间隔距离[view]被约束的vi... 阅读全文
摘要:
AVCaptureSession用来控制来自一个输入设备(AVCaptureDeviceInput)的声音和视频,流入一个输出缓冲区(AVCaptureOutput)的过程。建立一个AVCaptureSession的过程如下:1、创建一个新的AVCaptureSession。2、设置会话的录音、录像... 阅读全文