[self alertViewPlay:@"제목" Msg:@"내용" noBtn:NO Close:YES];
/*===================================
메시지 노출 START
===================================*/
- (void) alertViewPlay:(NSString *)title Msg:(NSString *)msg noBtn:(BOOL)nobtn Close:(BOOL)close
{
UIAlertController * alert = [UIAlertController
alertControllerWithTitle:title
message:msg
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* yesButton = [UIAlertAction
actionWithTitle:@"확인"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
if(close){
//Handle your yes please button action here
[self dismissViewControllerAnimated:YES completion:nil];
}
}];
[alert addAction:yesButton];
if(nobtn){
UIAlertAction* noButton = [UIAlertAction
actionWithTitle:@"취소"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
// Handle no, thanks button
}];
[alert addAction:noButton];
}
[self presentViewController:alert animated:YES completion:nil];
}
/*===================================
메시지 노출 END
===================================*/
'[ 모바일 관련 ] > 아이폰(iOS)' 카테고리의 다른 글
iOS - 다른 클래스의 메소드 호출하기 (0) | 2018.12.06 |
---|---|
아이폰 스플래시 이미지 사이즈 (Portrait 기준) (0) | 2018.12.05 |
iOS 문자열 포함 체크 + 문자열 비교 체크 (0) | 2018.11.06 |
iOS 소켓통신 참고 (0) | 2018.11.05 |
iOS 네트워크 상태 체크 (0) | 2018.11.01 |