update text field ui in swift ios

不打扰是莪最后的温柔 提交于 2019-11-29 08:16:46
Rikkles

Same issue that everyone is having when wanting to do UI updates in Swift: do not ever update the UI in any secondary thread. And that means anything with closures. Since Swift is using closures so much, that issue is being seen a lot more but it isn't new.

See Swift Update Label (with HTML content) takes 1min for the correct way of doing things.

UIKit is not thread-safe and should only be updated from the main thread. Downloads are done on the background thread, and you cannot update UI from there. Try:

For swift 3 and swift 4

DispatchQueue.main.async {
    self.txtTest.text = "Your text"
}

Related duplicate question but with specific answer

iOS label does not update text with function in Swift

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!