UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"tittle"
message:@""
delegate:self
cancelButtonTitle:@""
otherButtonTitles:nil];
[alertView show];
[alertView release];
しばらく表示された後にアラートビューを閉じたいのですが、アラートビューにボタンがない場合、呼び出しても機能しません。それを閉じる-dismissWithClickedButtonIndex:animated: method
他performSelector:withObject:afterDelay:
の方法はありますか? アイデアをありがとう!