强制重新加载 UITableView - Objective-C

发布于 2024-12-05 09:20:52 字数 383 浏览 0 评论 0原文

我有一个 tabBar 应用程序。有2个UIViewController A和B。UIViewController B有UITableView。我从 B UIViewController 调用 A UIViewController 中的方法: [b someMethod:someObject];

这是代码:

-(void) someMethod:someObject
{
  [tableViewDataArray addObject: someObject];
  [tableView reloadData];
}

但是 UITableView 不会重新加载,直到我将 UIViewController 切换到 B;如何在不切换的情况下重新加载它?如果这可能的话

I have a tabBar application. There are 2 UIViewControllers A and B. UIViewController B has UITableView. I call method in A UIViewController from B UIViewController: [b someMethod:someObject];

Here is code:

-(void) someMethod:someObject
{
  [tableViewDataArray addObject: someObject];
  [tableView reloadData];
}

But UITableView doesn't reload until I switch UIViewController to B; How to reload it without switching? If this possible

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

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

发布评论

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

评论(2

素手挽清风 2024-12-12 09:20:52

最好的解决方案是在工具栏上放置一个用于添加和刷新的按钮,并创建一个名为 add() 的函数并将其连接到该按钮。在里面你做的:

-(void) add:someObject
{
[tableViewDataArray addObject: someObject];
[tableView reloadData];
}

我遇到了类似的问题,这实际上有效,这应该有所帮助:如何在我查看时重新加载 UITableView

your best solution is to put a button on the toolbar for adding and refreshing and make a function called add() and connect it to the button. and inside there you do :

-(void) add:someObject
{
[tableViewDataArray addObject: someObject];
[tableView reloadData];
}

I was having a similar issue and this actually worked, this should help : How to Reload a UITableView While I am Looking at It

忆依然 2024-12-12 09:20:52

UITabBarController 在实际需要之前不会加载所有选项卡的视图,因此在切换到之前,您的表格视图可能根本不存在(即 nil)包含它的选项卡。

虽然您可以通过访问视图控制器的view属性来强制视图控制器加载其视图层次结构,但我不推荐这样做。无论如何,重新加载不可见的表视图有什么意义?

UITabBarController doesn't load all its tabs' views until they are actually needed, so your table view probably doesn't even exist (i.e. is nil) before you switch to the tab that contains it.

While you could force the view controller to load its view hierarchy by accessing its view property, I wouldn't recommend it. What's the point of reloading an invisible table view anyway?

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