Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Observable
- ribs
- ios
- 클린 코드
- 리팩토링
- swift documentation
- rxswift
- Clean Code
- tableView
- SWIFT
- combine
- uiscrollview
- RxCocoa
- 애니메이션
- Protocol
- Refactoring
- uitableview
- MVVM
- Xcode
- clean architecture
- UITextView
- HIG
- UICollectionView
- 리펙토링
- collectionview
- 리펙터링
- swiftUI
- Human interface guide
- 스위프트
- map
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - UI Custom] 6. 경고창(UIAlertController) 본문
iOS 실전 (swift)/UI 커스텀(프로그래밍적 접근)
[iOS - UI Custom] 6. 경고창(UIAlertController)
jake-kim 2020. 4. 17. 20:23
* 텍스트필드영역과 버튼영역 사이에 커스텀 할 수 있음 -> UIViewController타입을 넣을 수 있음
-방법 : alert.setValue(뷰 컨트롤러 객체, forKey:"contentViewController")
1
2
3
4
5
6
7
8
9
|
// nil 삽입하면 위 공간 사라짐
let alert = UIAlertController(title: nil, message: nil, preferredStyle: .alert)
(중략)
let vc = UIViewController()
vc.view.backgroundColor = .red
alert.setValue(vc, forKey: "contentViewController")
self.present(alert, animated: false)
|
'iOS 실전 (swift) > UI 커스텀(프로그래밍적 접근)' 카테고리의 다른 글
[iOS - UI Custom] 8. 커스텀 클래스 - UITabBarController (0) | 2020.04.18 |
---|---|
[iOS - UI Custom] 7. 커스텀 클래스 - UIButton (0) | 2020.04.17 |
[iOS - UI Custom] 5. TabBar Controller (0) | 2020.04.17 |
[iOS - UI Custom] 4. Navigation Controller (0) | 2020.04.17 |
[iOS - UI Custom] 3. UIKit객체별 속성지정 (0) | 2020.04.16 |
Comments