iPad SplitViewController:从详细视图控制器重新加载根视图控制器的表格视图
我搜索了这个网站和网络,只是在寻找一个关于如何从详细视图重新加载根视图控制器的表视图的简单示例。我尝试过通知,将详细视图控制器中的表格视图设置为等于根视图控制器的表格视图......没有任何效果。
有没有人经历过这个或有任何示例代码?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 notificationcenter 将通知从详细信息传递到 rootviewcontroller,告诉它重新加载数据。
前任:
在根视图控制器中
(我创建了一个名为 reloadRootTable 的方法,该方法调用
[self.tableView reloadData];
)在 DETAILVIEWCONTROLLER 中:
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];
)IN DETAILVIEWCONTROLLER: