刷新 UITextView 的内容
我有一个文本视图,其中包含从服务器获取的聊天历史记录。聊天历史记录通过我在上一个视图中启动的线程不断更新。我的问题是如何不断更新 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用这样的方法:
还要确保您的 GUI 更新位于主应用程序线程上。
I use something like this:
also make sure your GUI updates are on the main application thread.