我是NSOperationQueue的新手,我需要使用NSOperationQueue在后台进程调用web-service,怎么做,请帮帮我。 我花了更多的时间来做这件事。
先谢谢
答案 0 :(得分:0)
该主题有一些good tutorials和指南,即使在apple documentation中也是如此。使用搜索功能更多,或者你会得到很多关于提出琐碎问题的downvotes。
答案 1 :(得分:0)
对于OperationQueue-Part尝试
NSOperationQueue *q = [[NSOperationQueue alloc] initWithBlock:^{
//your code here
//and here ;)
}];
它会自动启动。有关OperationQueues的更多信息,请查看文档: https://developer.apple.com/library/mac/#documentation/cocoa/Reference/NSOperationQueue_class/Reference/Reference.html