
Concurrent
chuanyituoku
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Effective Objective-C 2.0: Item 44: Use Dispatch Groups to Take Advantage of Platform Scaling
Item 44: Use Dispatch Groups to Take Advantage of Platform Scaling Dispatch groups are a GCD feature that allows you to easily group tasks. You can then wait on that set of tasks to finish or be no原创 2013-12-14 13:40:24 · 3334 阅读 · 0 评论 -
Creating an NSInvocationOperation Object / NSBlockOperation Object
@implementation MyCustomClass - (NSOperation*)taskWithData:(id)data { NSInvocationOperation* theOp = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(myTaskMethod:) object:data]原创 2014-08-29 10:09:28 · 574 阅读 · 0 评论