정시 에 사라 지 는 Alert 창

원본 링크:http://www.cnblogs.com/Walking-Jin/p/7485726.html
공공 류 에 다음 과 같은 두 가지 방법 을 쓰 면 됩 니 다. 첫 번 째 방법 만 발표 하면 됩 니 다.
코드 는 다음 과 같 습 니 다:
#pragma mark ---      ---
+ (void)showAlertViewWithTitle:(NSString *)title message:(NSString *)message afterDelay:(NSTimeInterval)delay {
    
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:message delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];
    [alert show];
    [self performSelector:@selector(dimissAlert:) withObject:alert afterDelay:delay];
}

+ (void)dimissAlert:(UIAlertView *)alert {
    if(alert)     {
        [alert dismissWithClickedButtonIndex:[alert cancelButtonIndex] animated:YES];
    }
}

  
다음으로 전송:https://www.cnblogs.com/Walking-Jin/p/7485726.html

좋은 웹페이지 즐겨찾기