摘要: 异步线程 dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ dispatch_async(dispatch_get_main_queue(), ^{ }); }); 延迟 double d 阅读全文
posted @ 2016-08-03 12:04 YuFly 阅读(748) 评论(0) 推荐(0)
摘要: 在iOS8之前,UIActionSheet用的代理方法为 - (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex 在iOS8之后这种代理方法无法调用相册相机等,并且警告- 阅读全文
posted @ 2016-08-03 10:02 YuFly 阅读(141) 评论(0) 推荐(0)