gpt4 book ai didi

ios - UILabel 未在 dispatch_group_notify 内部更新

转载 作者:行者123 更新时间:2023-11-29 02:31:07 25 4
gpt4 key购买 nike

为什么这不起作用?

dispatch_group_notify(group, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0)) { () -> Void in
println("Howdy, I get called")
self.myLabel.text = "Hello Mr. Gordon Freeman"
}

消息已打印但未设置 UILabel 文本。

最佳答案

您只能更新主队列中的 UI 元素:

dispatch_group_notify(group, dispatch_get_main_queue()) {
println("Howdy, I get called")
self.myLabel.text = "Hello Mr. Gordon Freeman"
}

关于ios - UILabel 未在 dispatch_group_notify 内部更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26869457/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com