gpt4 book ai didi

iphone - PushViewController 导航到下一个堆栈

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:14:12 25 4
gpt4 key购买 nike

我是 IOS 的新手。我所做的只是简单地在我的主视图上放置一个 UIButton,我希望当我单击该按钮时它应该将我带到下一个堆栈。为此,我正在做的是

-(IBAction)stack:(id)sender{
Page1 *button =[[Page1 alloc]init];
[self.navigationController pushViewController:button animated:YES];
}

我只是将它添加到我的代码中......但它不起作用。

我是否需要将 UINavigationController 放在主视图或 AppDelegate 中以按下按钮并创建带导航的新堆栈

最佳答案

在 AppDelegate 中,

self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:self.viewController];

并更改您的按钮按下方法,

-(IBAction)stack:(id)sender{
Page1 *button =[[Page1 alloc] initWithNibName:@"Page1" bundle:nil];
[self.navigationController pushViewController:button animated:YES];
}

关于iphone - PushViewController 导航到下一个堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16392665/

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