我的 iOS 应用中有一个异步服务器请求:

[self performSelectorInBackground:@selector(doSomething) withObject:nil];

如何检测此操作的结束?

最佳答案

在doSomething方法的末尾放一个电话?!

- (void)doSomething {
    // Thread starts here

    // Do something

    // Thread ends here
    [self performSelectorOnMainThread:@selector(doSomethingDone) withObject:nil waitUntilDone:NO];
}

关于iphone - 检测 performSelectorInBackground 的结束 :withObject:,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5406803/

10-10 03:51