iPad SplitViewController:从详细视图控制器重新加载根视图控制器的表格视图

发布于 2024-11-17 10:58:56 字数 132 浏览 0 评论 0原文

我搜索了这个网站和网络,只是在寻找一个关于如何从详细视图重新加载根视图控制器的表视图的简单示例。我尝试过通知,将详细视图控制器中的表格视图设置为等于根视图控制器的表格视图......没有任何效果。

有没有人经历过这个或有任何示例代码?

I've searched this site and the web and just looking for a simple example on how to reload the root view controller's table view from the detail view. I've tried notifications, setting a tableview in the detailview controller equal to the tableview of the rootview controller...nothing works.

Has anyone experienced this or have any sample code?

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

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

发布评论

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

评论(1

狠疯拽 2024-11-24 10:58:56

使用 notificationcenter 将通知从详细信息传递到 rootviewcontroller,告诉它重新加载数据。

前任:
在根视图控制器中

(我创建了一个名为 reloadRootTable 的方法,该方法调用 [self.tableView reloadData];

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadRootTable) name:@"reloadRootTable" object:nil];
}

- (void)viewWillDisappear:(BOOL)animated
{
    [[NSNotificationCenter defaultCenter] removeObserver:self name:@"reloadRootTable" object:nil];
    [super viewWillDisappear:animated];
}

在 DETAILVIEWCONTROLLER 中:

[[NSNotificationCenter defaultCenter] postNotificationName:@"reloadRootTable" object:nil];

Use notificationcenter to pass a notification from the detail to the rootviewcontroller telling it to reload the data.

ex:
IN ROOT VIEW CONTROLLER

(where i've created a method called reloadRootTable, that calls [self.tableView reloadData];)

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadRootTable) name:@"reloadRootTable" object:nil];
}

- (void)viewWillDisappear:(BOOL)animated
{
    [[NSNotificationCenter defaultCenter] removeObserver:self name:@"reloadRootTable" object:nil];
    [super viewWillDisappear:animated];
}

IN DETAILVIEWCONTROLLER:

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