gpt4 book ai didi

objective-c - 从 uialertview 按钮打开一个 uiviewcontroller

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

如果按下 UIALertView 按钮,我想打开一个 UIViewController。

我有相应的代码。但是,未打开 uiviewcontroller :(

我确信 uialertview 工作正常。 uiviewcontroller 的代码也很好。 (从其他地方调用时有效)。

有什么帮助吗?

谢谢。

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex == 0) //Yes, Sign Me Up!
{
NSLog(@"0");
ViewerWebController *web = [[ViewerWebController alloc] initWithURL:[NSURL URLWithString:@"http://www.funimation.com/"]];
[web setShowToolbar:YES];
[self.navigationController pushViewController:web animated:YES];
[web release];

}
else if (buttonIndex == 1) //Remove from List
{
NSLog(@"1");
[[NSUserDefaults standardUserDefaults] setBool:false forKey:@"subscribeButtonOption"];
[_tableView reloadData];
}
else if (buttonIndex == 2) //"Maybe Later"
{
NSLog(@"2");
}
}

最佳答案

警报 View 没有导航 Controller 。您需要保留对要将 View Controller 推送到的导航 Controller 的引用。

关于objective-c - 从 uialertview 按钮打开一个 uiviewcontroller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9232354/

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