반응형
iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다.
let alert = UIAlertController(title: "Simple", message: "Simple Message with Cancel and OK", preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: { _ in
print("Cancel")
}))
alert.addAction(UIAlertAction(title: "OK", style: .default, handler: { _ in
print("OK")
}))
self.present(alert, animated: true)
실행 결과 :
반응형
'iOS > 코드조각' 카테고리의 다른 글
[iOS, Swift] UITextField 특정 글자 제한하기 (0) | 2022.08.21 |
---|---|
[iOS, Swift] UIAlertController 텍스트 입력창 추가하기 (0) | 2022.08.21 |
[iOS, Swift] UIView 위치 및 사이즈 설정 (extension) (0) | 2022.08.21 |
[iOS, Swift] UIView 애니메이션 효과 (0) | 2022.08.21 |
[iOS, Swift] UIView 흔들림 효과 주기 (0) | 2022.08.21 |