我想知道如果 AlertView 已经在屏幕上可见一段时间而没有收到用户的任何确认,它是否有可能超时,如果是这样,怎么办?有没有办法让 AlertView 对象与 NSTimer 对象链接?
我的基本 AlertView 代码如下:
- (IBAction)showMessage:(id)sender {
UIAlertView *message = [[UIAlertView alloc] initWithTitle:@"Hello World!"
message:@"This is your first UIAlertview message."
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[message show];
}