일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- viewcontroller
- solidity
- 이더리움
- POS
- 암호화폐
- DPOS
- Crash
- Xcode
- 블록체인
- .dsym
- 알고리즘
- 분산원장
- 백준
- ios
- DEFI
- PBFT
- Algorithm
- 프로그래머스
- Mining
- 블록체인 기술
- External Call
- view 이동
- dsYM
- 비트코인
- pow
- ethereum
- Blockchain
- 재진입공격
- Report
- reentrancy
Archives
- Today
- Total
개발하기좋은날
Alert, Action Sheet 간단 정리 본문
반응형
안드로이드 개발에서 사용하면 알람창
아이폰에서는 아래와 같은 모습을 한다 (왼쪽 : ActionSheet, 오른쪽 : Alert)
1. ActionSheet
- ActionSheet ViewController 생성후 Action을 생성하여 Present 호출 하면됨
- style 옵션에 .destructive .cancle .default 3가지 타입이있고 버튼 형태가 달라지니 기호에 맞게 사용하면된다
let actionSheetController = UIAlertController(title: "전화번호 수집 동의", message: "파트너 인증을 위하여 휴대폰 번호를 수집 합니다", preferredStyle: .actionSheet)
// 동의 액션
let actionDefault = UIAlertAction(title: "동의", style: .default, handler: { action in
print("ok!")
})
// 거절 액션
let actionCancle = UIAlertAction(title: "거절", style: .destructive, handler: { action in
print("cancle!")
})
// 액션 넣어주고 호출하면 끝
actionsheetController.addAction(actionDefault)
actionsheetController.addAction(actionCancle)
self.present(actionSheetController, animated: true)
2. Alert
- Alert 도 마찬가지다
- 핸들러 만들고 바인딩후 호출하면 끝
let alertController = UIAlertController(title: "타이틀 메세지", message: "바디의 메세지 내용", preferredStyle: .alert)
// ok 핸들러
let actionDefault = UIAlertAction(title: "거절", style: .destructive, handler: { action in
print("OK")
})
// 거절 핸들러
let actionCancle = UIAlertAction(title: "거절", style: .destructive, handler: { action in
print("Cancle")
})
// 핸들러 바인딩후 present로 호출
alertController.addAction(actionDefault)
alertController.addAction(actionCancle2)
self.present(alertController, animated: true)
반응형
'iOS > Development' 카테고리의 다른 글
iOS - SubView 제거 하는방법 (0) | 2021.01.19 |
---|---|
NSUserDefaults 사용하여 내부 DB에 간단하게 저장 (0) | 2021.01.19 |
iOS 출시및 배포 -4 (0) | 2021.01.11 |
iOS 출시및 배포 -3 (0) | 2021.01.11 |
iOS 출시및 배포 -2 (0) | 2021.01.11 |
Comments