티스토리 뷰
UIAlertAction(title: "취소", style: .cancel, handler: nil)
handler를 쓰고 싶다면,
UIAlertAction(title: "취소", style: .cancel, handler:{ (_) in } )
이렇게 쓰면 아무것도 안쓴 것과 같다!
어떤 내용을 쓰고 싶다면,
UIAlertAction(title: "취소", style: .cancel, handler:{ (_) in //여기에 내용 작성 } )
'macOS, iOS' 카테고리의 다른 글
[iOS] UserNotifications 프레임워크 (0) | 2019.08.29 |
---|---|
[iOS] alert에 text field 추가하는 법 (0) | 2019.08.28 |
[XCode] API 문서 보는 단축키 (0) | 2019.08.27 |
[iOS] UIAlertController (0) | 2019.08.27 |
[iOS] 로컬 푸시와 서버 푸시 (0) | 2019.08.27 |