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 |
Tags
- UITextView
- UICollectionView
- swiftUI
- combine
- clean architecture
- map
- Observable
- SWIFT
- 스위프트
- collectionview
- Xcode
- ios
- Protocol
- tableView
- RxCocoa
- 리팩토링
- 애니메이션
- swift documentation
- Refactoring
- MVVM
- HIG
- 클린 코드
- 리펙토링
- 리펙터링
- uiscrollview
- uitableview
- ribs
- Clean Code
- Human interface guide
- rxswift
Archives
- Today
- Total
목록.confirmationDialog (1)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/Ke1TO/btrKuuQGtAr/t17XgTpYSnETt0K0MHS1OK/img.gif)
목차) 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