uiimageview 的 uiimage 在 NSURLConnection sendSynchronousRequest (iphone) 之前不会更新

发布于 2024-09-02 20:35:59 字数 129 浏览 5 评论 0原文

我在调用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无言温柔 2024-09-09 20:35:59

在发送同步请求之前让 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.

紫南 2024-09-09 20:35:59

发出异步请求或将同步请求移至单独的线程中。对于简单的情况,您可以使用performSelectorInBackground:withObject:

Make an asynchronous request or move the synchronous request into a separate thread. You can use performSelectorInBackground:withObject: for simple cases.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文