我如何告诉我的 uitableviewcontroller 在异步套接字中重新加载数据
当我单击 tableViewController 中的按钮来获取数据时,我正在使用 cocoaAsyncSocket 我想在函数 didReadData 中调用我的 tableView 的 reloadData 。 应该如何获取我的 tableView 的引用? 请告诉我,我是否应该使用 appDelegate、单例或只是将其作为参数发送。或者如果我的设计全部都是错误的。 谢谢
I'm using cocoaAsyncSocket when i click on a button in my tableViewController to fetch the dat
I want in the function didReadData to call reloadData of my tableView.
how should get the reference of my tableView ?
please tell me, if i should use appDelegate, singletons or simply send it as a parameter. or if my design all together is wrong.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会考虑让您的套接字类发送表视图控制器侦听的 NSNotification。
I would consider having your socket class send a
NSNotification
which the table view controller listens to.