UIKit 버전 보러가기 import SwiftUI// 팝오버struct ContentView: View { @State private var showPopover = false var body: some View { Button("Popover") { showPopover.toggle() } .popover(isPresented: $showPopover) { PopoverView() .presentationCompactAdaptation(.popover) } }}struct PopoverView: View { var body: some View { ..
// https://medium.com/@iOSchandra0/how-to-create-a-pie-chart-in-swiftui-c7f056d54c81// iOS 17 미만을 위한 원형 차트/// 꽉차있는 일반적인 파이 버전struct PieChart: View { @State var slices: [(Double, Color)] var body: some View { Canvas { context, size in let total = slices.reduce(0) { $0 + $1.0 } context.translateBy(x: size.width * 0.5, y: size.height * 0.5) var pieC..
// https://nuli.navercorp.com/community/article/1133220/// 커스텀 슬라이더 (제어센터 UI)struct CustomSlider: View { enum Orientation { case vertical, horizontal } @Binding var value: Double @State private var percentRate: Double = 0 var label: String = "" var min: Double = 0 var max: Double = 100 var orientation: Orientation = .horizontal var trackColor: Color? var sliderColor: C..
- Total
- Today
- Yesterday
- SKPayment
- 심사
- AppStore
- Localizations
- Authorization
- 스위프트
- custom segment
- localizing
- Language
- 로컬라이징
- 엑스코드
- SKPaymentTransactionObserver
- 프로그레스
- TabView
- Xcode
- Reject
- 테이블뷰
- SKProductsRequestDelegate
- Localized
- 아이오에스
- ios
- indicator
- swiftUI
- permission
- presentationcompactadaptation
- 다국어
- 인디케이터
- SWIFT
- TabBar
- 리젝
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |