gpt4 book ai didi

ios - UITextField 文本在通过委托(delegate)方法设置时不出现

转载 作者:行者123 更新时间:2023-11-28 13:06:42 25 4
gpt4 key购买 nike

我正在使用 google books api 为我的应用程序实现条形码扫描器。数据被成功获取并存储在适当的文本字段中:

func readInJSON(controller: UIViewController, title: String, author: String, imageLink: String) {
self.titleTextField.text = title
self.authorTextField.text = author
}

但是,在我点击它们之前,文本实际上并没有出现在文本字段中,然后文本填充。我想知道是否有某种方法可以在用户不点击文本字段的情况下显示文本。

最佳答案

也许你不在主线程上。 UI操作应该在主线程上完成。试试这个

dispatch_async(dispatch_get_main_queue()) {
self.titleTextField.text = title
self.authorTextField.text = author
}

关于ios - UITextField 文本在通过委托(delegate)方法设置时不出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32542569/

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