반응형
//단순 메시지 전달해서 팝업 띄우기 메소드
- (void)popUpWithMessage:(NSString *)message {
UIAlertController * alert= [UIAlertController
alertControllerWithTitle:@"알림"
message:message
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* ok = [UIAlertAction
actionWithTitle:@"OK"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action)
{
[alert dismissViewControllerAnimated:YES completion:nil];
}];
[alert addAction:ok];
[self presentViewController:alert animated:YES completion:nil];
}
반응형
'ios 뽀개기 > objective-c' 카테고리의 다른 글
NSNotification 예제 (자식창 닫을때 부모창도 같이 닫기) (130) | 2019.10.24 |
---|---|
NSTimer & label 속성 (가운데, 줄간격, 위치고정 등) (141) | 2019.10.24 |
ios 인디케이터 (268) | 2019.10.24 |
ios 디바이스 사이즈 구하기 & xib 파일 이름으로 뷰 띄우기 (280) | 2019.10.24 |
viewDidLoad 에서 alert 띄울때 발생하는 오류 (246) | 2019.10.23 |
댓글