我需要有关以编程方式关闭 UIAlertView 的帮助。目前我有这个
UIAlertView *alert1 = [[UIAlertView alloc]initWithTitle:@"title" message:@"message" delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];
然后后来我称之为
[alert1 dismissWithClickedButtonIndex:0 animated:NO];
但什么也没发生。