gpt4 book ai didi

iphone - 带 2 个按钮的警报

转载 作者:行者123 更新时间:2023-12-03 19:37:33 26 4
gpt4 key购买 nike

我的应用程序中将有一个网站链接。用户将单击一个显示“网站”的按钮,然后将出现一个带有 2 个按钮的警报。其中一个按钮只是取消按钮,另一个按钮将打开网站。

你能帮我解决这个问题吗?

谢谢!

最佳答案

将其放入头文件中:

@interface YourViewController : UIViewController <UIAlertViewDelegate>

将其与警报一起放入类中:

- (void)alertOKCancelAction {
// open a alert with an OK and cancel button
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Open?" message:@"Open Website?" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Open", nil];
alert.tag = 1;
[alert show];
[alert release];
}

添加这个方法:

- (void)alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)buttonIndex 
{
// the user clicked one of the OK/Cancel buttons
if(alert.tag == 1)
{
if(buttonIndex == alert.cancelButtonIndex)
{
NSLog(@"cancel");
}
else
{
NSLog(@"ok");
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://www.google.com"]];
}
}
}

关于iphone - 带 2 个按钮的警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4250299/

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