我在NSOperation
内使用了阻止。我main
的{{1}}方法如下所示:
NSOperation
我希望我的- (void) main {
[self callMethodOfALiraryUsingCompletionBlock:^() {
//this method takes time to execute, will call this block when done
}];
}
在块中的内容完成时终止。目前,它会直接返回,然后执行块中的内容......我知道如何解决这个问题?
答案 0 :(得分:2)
您的问题中的细节很少,这里有一个可能有用的大纲:
dispatch_semaphore_create
)dispatch_async
)HTH