随笔分类 -  自己学习用

该文被密码保护。
posted @ 2015-10-23 15:24 超越昨天 阅读(4) 评论(0) 推荐(0)
摘要:传值B页面:[NSNotificationCenter defaultCenter] postNotificationName:@"cityName" object:self userInfo:dict];接收A页面:[[NSNotificationCenter defaultCenter] add... 阅读全文
posted @ 2015-10-21 16:51 超越昨天 阅读(134) 评论(0) 推荐(0)
摘要:1. 创建一个线程 dispatch_queue_t globalQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);2. 将任务放进该线程 dispatch_async(globalQueue, ^{ ... 阅读全文
posted @ 2015-10-21 16:49 超越昨天 阅读(159) 评论(0) 推荐(0)