可以自動消失的彈出提示框
阿新 • • 發佈:2019-02-13
+(void)timerFireMethod:(NSTimer*)theTimer{
//彈出框
UIAlertView *promptAlert = (UIAlertView*)[theTimer userInfo];
[promptAlert dismissWithClickedButtonIndex:0animated:NO];
promptAlert = NULL;
}
+(void)showAlert:(NSString *) _message{
//時間
UIAlertView *promptAlert = [[UIAlertViewalloc] initWithTitle
[NSTimerscheduledTimerWithTimeInterval:1.5f
target:self
selector:@selector(timerFireMethod:)
userInfo:promptAlert
repeats:YES];
[promptAlert show];
}