gpt4 book ai didi

ios - 如何在主从应用程序中从明细 View 打开主视图

转载 作者:行者123 更新时间:2023-11-29 03:06:36 25 4
gpt4 key购买 nike

我正在 xcode 中开发一个主从 iPad 应用程序。

我的详细 View 中有一个按钮和文本框。当用户单击按钮时,它会调用MasterDetailViewController

中的方法
- (IBAction)refreshButtonClicked:(id)sender {
[self.parent searchRSSWithURL:self.textBoxOutlet.text];
}

(self.parentMasterDetailViewController。)此方法创建一个数组,用于填充 MasterDetailViewController 中的 TableView ,并且它正在成功地做到这一点。

我想做的是在单击按钮时自动打开主视图,以便可以看到tableview,但我不知道如何实现这一点。

最佳答案

如果你正在使用 UINavigationController 那么

- (IBAction)refreshButtonClicked:(id)sender 
{
[self.parent searchRSSWithURL:self.textBoxOutlet.text];
[self.navigationController popViewControllerAnimated:YES];
}

其他方面

- (IBAction)refreshButtonClicked:(id)sender 
{
[self.parent searchRSSWithURL:self.textBoxOutlet.text];
[self dismissModalViewControllerAnimated:YES]; // OR [self dismissViewControllerAnimated:YES completion:nil];
}

关于ios - 如何在主从应用程序中从明细 View 打开主视图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22704511/

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