일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- combine
- Refactoring
- 리팩토링
- Xcode
- swiftUI
- tableView
- ios
- swift documentation
- HIG
- MVVM
- uiscrollview
- 리펙토링
- 클린 코드
- collectionview
- Observable
- 스위프트
- Clean Code
- map
- 애니메이션
- UITextView
- clean architecture
- Protocol
- RxCocoa
- 리펙터링
- ribs
- SWIFT
- rxswift
- Human interface guide
- UICollectionView
- uitableview
- Today
- Total
목록Alert (3)
김종권의 iOS 앱 개발 알아가기
목차) SwiftUI의 기본 - 목차 링크 Alert iOS 13~iOS 15까지는 위 Alert를 사용했지만, deprecated iOS 15부터는 .alert 사용을 권장 .alert는 더욱 선언적으로 alert를 사용할 수 있는 방법 위 Alert를 하나의 View로 존재했지만, iOS15부터는 메소드로 사용이 가능 (더욱 선언적 프로그래밍) 사용 방법은 Button에 .alert하여 추가 alert가 보이는 상태 변수도 하나 추가 .alert 메소드에는 titleKey, isPresented, View 순서대로 주입하여 사용 @State var isShowing = false var body: some View { Button("Alert") { isShowing = true } .alert("t..
* 텍스트필드영역과 버튼영역 사이에 커스텀 할 수 있음 -> 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)
* 메시지 전달의 종류 - 단순 알림창 - 로컬 알림 - 서버 알림 (여기서는 다루지 않음) 1. 단순 알림창 - 앱이 실행중에만 가능 (fore ground에서만 가능) 1) 생성 - DispatchQueue.main.async : 메인스레드(UI관련)에서도 async작업을 사용할 수 있도록 하는 것 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 DispatchQueue.main.async { let alert = UIAlertController(title:"알림", message: "UIAlertController알림창", preferredStyle: .alert) // .actionSheet사용가능 let ok = UIAlertAction(title: "ok", style: .de..