Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经为每个上传到 Dropbox 的文件实现了一个 NSOperationQueue。我正在为该操作的线程的每个操作设置委托。我没有得到任何委托方法的回调。
如果使用主线程,同样的过程可以正常工作。
问题是保管箱委托在另一个线程中注册。我正在使用带有 NSQueue 的 NSOperation 我只是继续轮询操作未完成。
while (_state != DropboxOperationStateFinished) { [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]]; }