UITableview 数据源方法并检索 json 作为数据源
我使用 RestKit 库从 REST 服务加载 json,然后将数据映射到对象。
如果我应用检索到的对象作为数据源,则 tableview 数据源方法会在下载 json 之前运行,这会使 [list count] 为 0。
现在,如何在检索 json 时防止表加载或刷新表?
I'm using the RestKit library to load json from my REST services, and then mapping the data to an object.
If I apply that retrieved object as the datasource, the tableview datasource methods run before the json is downloaded, which leaves [list count] at 0.
Now, how do I prevent the table from loading or refresh the table when the json is retrieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1.) 将 JSON 读入数组并将其用作表的数据源
2.) 如果您的 JSON 更新,请使用一些函数
来接收您的 JSON,抛出旧的表数据数组并将其替换为新数组。
3.) 确保调用“reloadData”
1.) Read your JSON into an array and use that as the data source for your table
2.) If your JSON updates, have some function
that takes in your JSON, throws out the old table data array and replaces it with a new array.
3.) Make sure to call "reloadData"