标签: ios objective-c nsoperation nsoperationqueue
我需要有一个NSOperationQueue才能执行以下操作:
maxConcurrentOperationCount
我面临的问题是NSOperationQueue仅适用于Serial操作,因为对于concurrent操作,我们需要子类化NSOperation类。
Serial
concurrent
还有其他选择吗?
供参考: 我需要在NSOperationQueue中安排的操作具有与之关联的completionHandlers。