gpt4 book ai didi

iphone - 我将如何重新加载 View Controller 的 TableView 关闭另一个 View Controller 上的页面 curl 。

转载 作者:行者123 更新时间:2023-11-28 18:38:33 26 4
gpt4 key购买 nike

在另一个 View Controller 上的页面 curl 关闭后,我将如何重新加载 View Controller 的 TableView 。

我在 viewController1 上有一个 tableview,它使用 page curl 转换到 viewController2。

viewController1有一个tableView需要在page curl关闭后重新加载。

谢谢你的帮助

最佳答案

好的,

在您的 viewControllers1 中注册 viewDidLoad 中的通知:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:@"MyNotification" object:nil];

并添加方法:

- (void)handleNotification:(NSNotification*)note {
[tableView reloadData];
}

在您的 viewController2 中发布通知,当您将转到 viewController1 或您想要重新加载表格时:

[[NSNotificationCenter defaultCenter] postNotificationName:@"MyNotification" object:self];

关于iphone - 我将如何重新加载 View Controller 的 TableView 关闭另一个 View Controller 上的页面 curl 。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14732785/

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