gpt4 book ai didi

ios - 从外部委托(delegate)推送 View Controller

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:42:43 24 4
gpt4 key购买 nike

我有两个类(class); MasterView 是一个 UIViewController,它显示我的 TableView 和 MyClass,出于各种原因充当 TableView 的委托(delegate)和数据源。选择单元格时,我需要推送 View Controller (DetailView)。如何从 MyClass 推送 View ?这就是我真正拥有的:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

if (!detailViewController) {
detailViewController = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:nil];
}

//Somehow push detailViewController
}

最佳答案

有几种方法可以实现这一点。我假设您已经将 Masterview 嵌入到 UINavigationController 中,对吗?

您可以通过传递对您的 Masteriew 的引用来访问它,然后使用:

[masterView.navigationController pushViewController:detailViewController animated:YES];

如果您的 Masterview 以某种方式与您的应用程序的委托(delegate)相关并且您想要访问它,您也可以使用以下行:

MainClass *appDelegate = (MainClass *)[[UIApplication sharedApplication] delegate];

关于ios - 从外部委托(delegate)推送 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17002499/

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