提醒2个按钮

时间:2010-11-22 21:16:33

标签: iphone iphone-sdk-3.0 ios4 alert

我将在我的应用中找到一个指向网站的链接。用户将单击一个显示网站的按钮,并且警报将显示2个按钮。其中一个按钮就是取消按钮,另一个按钮将打开网站。

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

谢谢!

1 个答案:

答案 0 :(得分:6)

将其放入您的标题文件中:

@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"]]; 
    }
  }
}