반응형
iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다.
let alert = UIAlertController(title: "Simple", message: "Simple Message with TextField", preferredStyle: .alert)
let defaultAction = UIAlertAction(title: "OK", style: .default) { (action) in
}
alert.addAction(defaultAction)
alert.addTextField { (textField) in
textField.delegate = self
}
self.present(alert, animated: true)
실행 결과
반응형
'iOS > 코드조각' 카테고리의 다른 글
[iOS, Swift] UISwipeGestureRecognizer 예제 (0) | 2022.08.25 |
---|---|
[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 |