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
- 연금저축펀드
- 강릉
- 괌 자유여행
- 시밀란
- Concurrency #Swift #Combine
- 라이브러리
- 리브어보드
- 도심공항
- xcode
- 지팍스페인
- 크로아티아
- Gradle
- 스쿠버다이빙
- SwiftUI #Skeleton #데이터갱신
- 스플리트
- 세비야
- 아시아나
- 러브스플리트
- cocoapod
- Swift #Concurrency #쓰레드
- 공기먹는다이버스
- 대한항공
- Cocoapods #PrivateRepo #SpecRepo
- swiftUI
- 스페인여행
- 그라나다
- Device 등록
- 푸켓여행
- 스페인광장
- 러브자그레브
Archives
- Today
- Total
목록swiftUI (2)
JEP's Diary
SwiftUI Custom Alert
Custom Alert을 FullScreenCover 이용해서 만들기 아래 URL 참고 https://stackoverflow.com/questions/68178219/swiftui-creating-custom-alert
Development/iOS
2022. 8. 4. 20:36
SwiftUI 투명 fullScreenCover
FullScreenCover를 이용해서 Custom Alert를 만들기 위해 배경을 투명 처리되도록 해야했다. 먼저 View를 extension 한다 // 투명 fullScreenCover extension View { func transparentFullScreenCover(isPresented: Binding, content: @escaping () -> Content) -> some View { fullScreenCover(isPresented: isPresented) { ZStack { content() } .background(TransparentBackground()) } } } struct TransparentBackground: UIViewRepresentable { func makeUIV..
Development/iOS
2022. 8. 4. 20:34