gpt4 book ai didi

iphone - UITableView 重新加载数据

转载 作者:太空狗 更新时间:2023-10-30 03:10:14 25 4
gpt4 key购买 nike

我正在为 iphone 制作一个基于导航的应用程序。

我的一个 View Controller 看起来像这样:

@interface NewComputerViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>

所以我使用 UITableView 来显示数据。

加载 View 时,我使用顶部导航栏中的按钮运行函数 loadStuff 加载字典中的一些内容。

我的问题:如何从 loadStuff 函数(属于 View Controller )重新填充该 View Controller 中的 TableView

最佳答案

您始终可以使用[tableView reloadData] 方法!

但是如果你有一些数据存储在本地并从一些服务器加载新的东西那么你可以去:

[tableView beginUpdates];
[tableView insertRowsAtIndexPaths:*arrayOfIndexPaths* withRowAnimation:*rowAnimation*];
[tableView endUpdates];

如果你想删除现有的行,你可以使用

[tableView beginUpdates];
[tableView deleteRowsAtIndexPaths:*arrayOfIndexPaths* withRowAnimation:*rowAnimation*];
[tableView endUpdates];

关于iphone - UITableView 重新加载数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5094972/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com