uiimageview 的 uiimage 在 NSURLConnection sendSynchronousRequest (iphone) 之前不会更新
我在调用 NSURLConnection sendSynchronousRequest 之前替换了 uiimageview 的 uiimage,因此我看不到新的 uiimage。
我该如何解决这个问题?
tnx
I'm replacing an uiimage of uiimageview before calling NSURLConnection sendSynchronousRequest, an as a result i don't see the new uiimage.
How i can resolve this?
tnx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在发送同步请求之前让 UI 更新发生(从运行循环)。使用 NSObject 的performSelector:withObject:afterDelay: 来在(零)延迟后安排一个方法。在您在选择器参数中指定的方法中,您将发送请求。
Let the UI update happen (from the run loop) before sending your synchronous request. Use NSObject's
performSelector:withObject:afterDelay:
to schedule a method after a (zero) delay. In the method you specify in the selector argument you would send the request.发出异步请求或将同步请求移至单独的线程中。对于简单的情况,您可以使用
performSelectorInBackground:withObject:
。Make an asynchronous request or move the synchronous request into a separate thread. You can use
performSelectorInBackground:withObject:
for simple cases.