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 ScalingDispatch 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 · 3308 阅读 · 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 · 560 阅读 · 0 评论