// https://calliek.tistory.com/63// https://velog.io/@jujube0/SwiftUI로-네이버웹툰-상단-배너-만들기/// 무한 스크롤 + 타이머struct InfiniteCarousel: View { /// 순환배열 @State var items: [Color] = [.red, .green, .blue] /// 타이머 @State var timer = Timer.publish(every: 3, on: .main, in: .common).autoconnect() /// 현재 인덱스 @State private var currentIndex: Int = 0 /// 드래그중 여부 @State private var isDraggin..
import SwiftUI/// 커스텀 세그먼트 뷰 (컨텐츠 크기만큼 동적 너비 버전)struct SegmentedFlexibleView: View { let segments: [String] @Binding var currentPage: Int @Namespace private var name var body: some View { ScrollViewReader { proxy in ScrollView(.horizontal, showsIndicators: false) { HStack(spacing: 0) { ForEach(segments.indices, id: \.self) {..
import SwiftUI/// 커스텀 세그먼트 뷰 (가로 꽉 채우는 고정 너비 버전)struct SegmentedFixedView: View { let segments: [String] @Binding var currentPage: Int @Namespace private var name var body: some View { HStack(spacing: 0) { ForEach(segments.indices, id: \.self) { index in Button { currentPage = index } label: { ..
- Total
- Today
- Yesterday
- 다국어
- 프로그레스
- Infinite Carousel
- 엑스코드
- 로컬라이징
- AppStore
- 리젝
- 테이블뷰
- 인디케이터
- SWIFT
- 심사
- Language
- SKPayment
- presentationcompactadaptation
- ios
- Reject
- TabBar
- picker
- custom segment
- 스위프트
- localizable
- indicator
- permission
- Authorization
- swiftUI
- TabView
- Xcode
- 현지화
- 아이오에스
- localizing
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |