UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"tittle"
message:@""
delegate:self
cancelButtonTitle:@""
otherButtonTitles:nil];
[alertView show];
[alertView release];
-dismissWithClickedButtonIndex:animated: method
我想在它显示一段时间后关闭alerview,但是当alerview没有按钮时,如果我调用它就不起作用performSelector:withObject:afterDelay:
-还有其他方法可以关闭它吗?感谢您的任何想法!