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
- uitableview
- RxCocoa
- Clean Code
- ios
- Refactoring
- ribs
- UITextView
- 리팩토링
- 클린 코드
- Observable
- uiscrollview
- Human interface guide
- Xcode
- rxswift
- clean architecture
- swiftUI
- Protocol
- MVVM
- collectionview
- swift documentation
- 리펙토링
- 리펙터링
- combine
- tableView
- HIG
- 애니메이션
- map
- SWIFT
- 스위프트
- UICollectionView
Archives
- Today
- Total
목록.confirmationDialog (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] Alert, ActionSheet (.alert, .confirmationDialog) 사용 방법
목차) 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..
iOS 기본 (SwiftUI)
2022. 9. 1. 22:53