
// https://ahmetkasimnazli.medium.com/creating-an-audio-player-with-avkit-in-swiftui-a17f3b704fad// 오디오 플레이어struct ContentView: View { @State var viewModel = ViewModel() var body: some View { VStack { HStack { Button { if viewModel.isPlaying { viewModel.pause() } else { ..

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 { ..

SwiftUI 버전 보러가기 import UIKit// 팝오버class ViewController: UIViewController { let button = UIButton(type: .system) override func viewDidLoad() { super.viewDidLoad() button.setTitle("Popover", for: .normal) let action = UIAction(handler: showPopover) button.addAction(action, for: .touchUpInside) view.addSubview(button) b..
- Total
- Today
- Yesterday
- TabView
- localizing
- 테이블뷰
- 인디케이터
- AppStore
- 심사
- SKProductsRequestDelegate
- SKPayment
- SWIFT
- Reject
- 엑스코드
- 리젝
- Language
- custom segment
- 스위프트
- TabBar
- ios
- swiftUI
- Authorization
- permission
- presentationcompactadaptation
- 아이오에스
- 프로그레스
- 로컬라이징
- 다국어
- Xcode
- localizable
- indicator
- picker
- 현지화
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |