帮助使用 UITableView 获得高分页面

发布于 2024-10-29 05:13:38 字数 166 浏览 0 评论 0原文

我正在制作一个简单的游戏应用程序,实现一个标签栏控制器。第二个选项卡或高分页面是我遇到的问题。我可以使用初始对象数组填充 UITableView,但是我似乎无法添加新单元格。现在我读到了有关用户输入单元格的内容,但是我究竟如何从一个选项卡中提取获胜者以填充高分选项卡中的 UITableView 呢?谢谢您的宝贵时间!

I am making a simple gaming app, implementing a tab bar controller. The second tab, or high score page is what I am having problems with. I am able to populate the UITableView with an initial array of objects, however I can't seem to add new cells. Now I read about User entered cells, but how exactly would I extract the winner from one tab to populate the UITableView in the high score tab? Thank you for your time!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

春风十里 2024-11-05 05:13:38

要将新单元格添加到 UITableView,最简单的方法是简单地重新加载整个表格视图[UITableView reloadData]

假设您将单元格内容存储在可变数组中,只需将这些新条目添加到该数组并重新加载表即可。

For adding new cells to your UITableView, the most straightforward way would be by simply reloading the entire table view [UITableView reloadData].

Assuming that you are storing the cell-contents in a mutable array, simply add those new entries to that array and reload the table.

痞味浪人 2024-11-05 05:13:38

您可以更新数组并在表视图上调用 reloadData 来重新加载它,如果您想在特定位置添加单元格,您可以使用

  • (void)insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:

You can update your array and call reloadData on table view to reload it and also if you want to add cell at a specific position you can use

  • (void)insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文