0

忽略 TextField 因为 buttonIndex 不起作用,所以我将文本字段语法排除在外。

-(IBAction)bm1:(id)sender {
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Set Bookmark" message:@"Type URL Here" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Ok", nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;

                      [alert show];
                      [alert release];
                      }
- (void)alertView:(UIAlertView *)alertview clickedButtonAtIndex:(NSInteger)buttonIndex{
if (buttonIndex == 0) {
    NSLog(@"It works");
}
}
4

2 回答 2

1

你附加<UIAlertViewDelegate>到头文件了吗?

@implementation MyClass : <UIAlertViewDelegate>
于 2012-08-14T00:26:39.703 回答
-1

尝试使用 alertview.cancelButtonIndex 或 alertview.firstOtherButtonIndex 而不是 0。这将比使用幻数更具可读性。

于 2012-08-14T00:26:17.440 回答