1 有時候咱們須要alertView 彈出後自動消失,好比自動登陸,若是是使用系統自帶的UIAlertView的話,這樣能夠很方便實現,實現方法以下:spa
首先在初始化alertView的地方使用計時器,如orm
[NSTimer scheduledTimerWithTimeInterval:2.0fget
target:self selector:@selector(dismissAlertView:)it
userInfo:nil登錄
repeats:NO];select
接下來實現dismissAlertView這個方法方法
- (void)dismissAlertView:(NSTimer*)timer {im
[loginAlertView dismissWithClickedButtonIndex:0 animated:YES];margin
}top
這樣在彈出框顯示2秒後將自動消失,是否是很方便呢()