刷新 UITextView 的内容

发布于 2024-11-14 19:11:29 字数 188 浏览 2 评论 0原文

我有一个文本视图,其中包含从服务器获取的聊天历史记录。聊天历史记录通过我在上一个视图中启动的线程不断更新。我的问题是如何不断更新 UITextView 以反映更改?

self.textView.text = [[NSString alloc]initWithFormat:@"%@",chatHistory];

I have a textview which contains chat history obtained from a server.The chat history is being constantly updated through a thread which I had started in a previous view. My problem is how do I constantly update my UITextView to reflect the changes?

self.textView.text = [[NSString alloc]initWithFormat:@"%@",chatHistory];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

皇甫轩 2024-11-21 19:11:29

我使用这样的方法:

NSString *newMessage = [NSString stringWithFormat:@"%@\n%@", [textView text], newChat];
[textView setText:newMessage];

还要确保您的 GUI 更新位于主应用程序线程上。

[self performSelectorOnMainThread:@selector(updateMyGui) withObject:nil waitUntilDone:NO];

I use something like this:

NSString *newMessage = [NSString stringWithFormat:@"%@\n%@", [textView text], newChat];
[textView setText:newMessage];

also make sure your GUI updates are on the main application thread.

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