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.
我有一个名为“uploadImage”的方法。这是我的方法将图像上传到我的服务器。但是,当我回到其他视图时,“uploadImage”方法没有运行。我希望“uploadImage”方法一直运行直到完成!
那么,我该如何解决它。谢谢 !
您可以使用 GCD 将该方法放入后台队列中。
https://developer.apple.com/library/mac/documentation/Performance/Reference/GCD_libdispatch_Ref/Reference/reference.html
看看 NSOperationQue 或 NSThread,NSOperationQue 可能是更好更现代的方式,尤其是如果您有许多在运行时确定的 uploadImages。