UITableview 数据源方法并检索 json 作为数据源

发布于 2024-12-02 11:34:43 字数 161 浏览 1 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

预谋 2024-12-09 11:34:43

1.) 将 JSON 读入数组并将其用作表的数据源
2.) 如果您的 JSON 更新,请使用一些函数

-(void)tableDataDidUpdate

来接收您的 JSON,抛出旧的表数据数组并将其替换为新数组。

3.) 确保调用“reloadData”

    [self.tableView 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

-(void)tableDataDidUpdate

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"

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