有时 UITableView 不显示数据
我正在使用 XCode 4.0.1。我对 UITableView 有不同的看法。数据来自服务器。我正在解析 JSON 数据并将其显示到表视图。我正在使用 reloaddata 方法在表视图上显示数据。但大多数情况下它不显示任何内容(它不调用表视图委托方法),但有时功能正常。我正在 ViewWillAppear 处调用 URL,在 ConnectionDidFinishLoadingData 上调用 ReloadData。
我是一位经验丰富的 iPhone 程序员,但这对我来说是出乎意料的。任何建议。提前致谢。
I am using XCode 4.0.1. I have to different views with UITableView. Data is coming from server. I am parsing JSON data and displaying it to tableview. I am using reloaddata method to display data on tableview. But mostly It is not displaying anything(It is not calling tableview delegate methods) but sometimes functioning normally. I am calling URL at ViewWillAppear, calling reloaddata on connectiondidfinishloadingdata.
I am experienced programmer for iphone but this is unexpected to me. Any Suggestions. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许你应该在主线程上调用你的更新。
May be you should call your update on the main thread.