上一页 1 2 3 4 5 6 7 8 ··· 14 下一页
摘要: dispathc_apply 是dispatch_sync 和dispatch_group的关联API.它以指定的次数将指定的Block加入到指定的队列中。并等待队列中操作全部完成. NSArray *array = [NSArray arrayWithObjects:@"/Users/chentao/Desktop/copy_res/gelato.ds", @"/Users/chentao/Desktop/copy_res/jason.ds", @"/Users/chentao/Desktop/copy... 阅读全文
posted @ 2014-03-13 17:38 酱酱爱 阅读(8907) 评论(0) 推荐(1) 编辑
摘要: dispatch_sync(),同步添加操作。他是等待添加进队列里面的操作完成之后再继续执行。 dispatch_queue_t concurrentQueue = dispatch_queue_create("my.concurrent.queue", DISPATCH_QUEUE_CONCURRENT); NSLog(@"1"); dispatch_sync(concurrentQueue, ^(){ NSLog(@"2"); [NSThread sleepForTimeInterval:10]; NSLog(@"3&q 阅读全文
posted @ 2014-03-13 11:44 酱酱爱 阅读(42319) 评论(1) 推荐(3) 编辑
摘要: 先看段代码 dispatch_queue_t concurrentQueue = dispatch_queue_create("my.concurrent.queue", DISPATCH_QUEUE_CONCURRENT); dispatch_async(concurrentQueue, ^(){ NSLog(@"dispatch-1"); }); dispatch_async(concurrentQueue, ^(){ NSLog(@"dispatch-2"); }); dispatch_barrier_async(concu.. 阅读全文
posted @ 2014-03-13 11:26 酱酱爱 阅读(23141) 评论(1) 推荐(1) 编辑
摘要: 如果想在dispatch_queue中所有的任务执行完成后在做某种操作,在串行队列中,可以把该操作放到最后一个任务执行完成后继续,但是在并行队列中怎么做呢。这就有dispatch_group 成组操作。比如 dispatch_queue_t dispatchQueue = dispatch_queue_create("ted.queue.next", DISPATCH_QUEUE_CONCURRENT); dispatch_group_t dispatchGroup = dispatch_group_create(); dispatch_group_async(dispat 阅读全文
posted @ 2014-03-12 18:43 酱酱爱 阅读(26126) 评论(1) 推荐(2) 编辑
摘要: block的定义:“带自动变量的匿名函数”(一)写法:^ void (int iAge){ NSLog(@"%d", iAge);};和C函数写法区别在于:1) :以插入符号 ^ 开始.2):没有函数名字当block声明变量时候的写法void (^blk)(int iAge)block 做函数参数时候void testFunction:(int)age complete:(void(^)(int iAge))complete{ age++; if(complete){ complete(age); } }(二)block是c语音的扩展,实际上block会被翻译成c语言的st 阅读全文
posted @ 2014-03-12 16:47 酱酱爱 阅读(1528) 评论(0) 推荐(0) 编辑
摘要: 项目中如果想把异常捕获再写入文件,有个十分容易使用的库DDLog.首先导入库,在git上下载。一:在项目初始化指定全局LogLeve ,一般在xxxapp.m中staticconstint ddLogLevel = LOG_LEVEL_VERBOSE;二: - (void)applicationDidFinishLaunching:(NSNotification *)aNotification{ NSExceptionHandler *exceptionHandler = [NSExceptionHandler defaultExceptionHandler] ; exceptio... 阅读全文
posted @ 2014-03-06 00:49 酱酱爱 阅读(6685) 评论(0) 推荐(0) 编辑
摘要: http://esoftmobile.com/2013/08/17/effective-objective-c-2/Chapter 6: Blocks and Grand Central DispatchItem 37: Understand Blocks《Ry’s Objective-C Tutorial》# BlocksItem 38: Create typedefs for Common Block Types当我们程序中要使用一些具有共性的Block时(返回值类型、参数个数和类型相同),我们可以给这种Block定义一个类型:typedef NSComparisonResult (^NS 阅读全文
posted @ 2013-11-12 14:36 酱酱爱 阅读(1081) 评论(0) 推荐(0) 编辑
摘要: 网上看到的 http://esoftmobile.com/2013/08/10/effective-objective-c/本文是针对《Effective Objective-C》一书的代码解读,笔者并没有看过原书,只是通过阅读该书的代码,并结合相应的主题,来臆测作者可能要表达的内容并用自己的语言来描述出来。Chapter 1: Accustoming Yourself to Objective-CItem 1: Familiarize Yourself with Objective-C's RootsItem 2: Minimize Importing Headers in Head 阅读全文
posted @ 2013-11-12 14:25 酱酱爱 阅读(1936) 评论(0) 推荐(0) 编辑
摘要: 摘录自:http://zhuyanfeng.com/archives/3066Main Dispatch Queue是在主线程中执行任务的Dispatch Queue。因为主线程只有1个,所以Main Dispatch Queue是Serial Dispatch Queue。追加到Main Dispatch Queue中的任务将在主线程的RunLoop中执行。因为是在主线程中执行,所以应该只将用户界面更新等一些必须在主线程中执行的任务追加到Main Dispatch Queue中。dispatch_queue_t dispatch_main_queue = dispatch_get_main_ 阅读全文
posted @ 2013-10-14 18:02 酱酱爱 阅读(2005) 评论(0) 推荐(0) 编辑
摘要: 摘录于: http://zhuyanfeng.com/archives/3042dispatch_queue_create 用于创建用户线程队列。可以创建Serial/Concurrent Dispatch Queue 两种队列,即串行与并行队列。1. 创建Serial Dispatch Queue。dispatch_queue_t serialQueue = dispatch_queue_create(“com.SerialQueue”, NULL);可以创建多个串行队列,串行队列也可以并行执行。决不能随意的大量生产Serial Dispatch Queue。2. 创建Concurrent. 阅读全文
posted @ 2013-10-14 17:56 酱酱爱 阅读(18677) 评论(0) 推荐(2) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 14 下一页