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 |
Tags
- 애니메이션
- clean architecture
- 리펙터링
- rxswift
- combine
- UICollectionView
- swiftUI
- map
- Xcode
- SWIFT
- Observable
- 클린 코드
- uitableview
- Protocol
- 스위프트
- Refactoring
- collectionview
- 리펙토링
- ribs
- swift documentation
- ios
- RxCocoa
- tableView
- uiscrollview
- Clean Code
- Human interface guide
- HIG
- UITextView
- MVVM
- 리팩토링
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] Axis, Form 사용 방법 본문
Axis
- enum 타입
- 형태
- 단순히 horizontal, vertical이라는 case가 있는 형태
@frozen public enum Axis : Int8, CaseIterable {
case horizontal
case vertical
@frozen public struct Set : OptionSet {
public typealias Element = Axis.Set
public let rawValue: Int8
public init(rawValue: Int8)
public static let horizontal: Axis.Set
public static let vertical: Axis.Set
public typealias ArrayLiteralElement = Axis.Set.Element
public typealias RawValue = Int8
}
public init?(rawValue: Int8)
public typealias AllCases = [Axis]
public typealias RawValue = Int8
public static var allCases: [Axis] { get }
public var rawValue: Int8 { get }
}
Form
- Form은 매우 직관적으로 설정화면에서 사용되는 기능들을 쉽게 구현할 수 있는 컴포넌트
- Section과 같이 사용되며 쉽게 그룹화가 가능
- 데이터 정의
- 그룹화에 사용될때는 enum으로 정의
enum NotifyMeAboutType {
case directMessages
case mentions
case anything
}
enum ProfileImageSize {
case large
case medium
case small
}
- @State 프로퍼티 선언
struct ContentView: View {
@State var notifyMeAbout = NotifyMeAboutType.directMessages
@State var playNotificationSounds = false
@State var profileImageSize = ProfileImageSize.large
@State var sendReadReceipts = false
var body: some View {
}
}
- Form안에 Section을 놓고, Section안에 Picker, Text, Toggle 등을 배치
var body: some View {
NavigationView {
Form {
Section(header: Text("Notifications")) {
Picker("Notify Me About", selection: $notifyMeAbout) {
Text("Direct Messages").tag(NotifyMeAboutType.directMessages)
Text("Mentions").tag(NotifyMeAboutType.mentions)
Text("Anything").tag(NotifyMeAboutType.anything)
}
Toggle("Play notification sounds", isOn: $playNotificationSounds)
Toggle("Send read receipts", isOn: $sendReadReceipts)
}
Section(header: Text("User Profiles")) {
Picker("Profile Image Size", selection: $profileImageSize) {
Text("Large").tag(ProfileImageSize.large)
Text("Medium").tag(ProfileImageSize.medium)
Text("Small").tag(ProfileImageSize.small)
}
Button("Clear Image Cache") {}
}
}
}
}
* Picker를 사용하여, 해당 UI를 터치했을때 그 화면으로 넘어가게끔 구현
* 전체 코드: https://github.com/JK0369/ExAxis
* 참고
'iOS 기본 (SwiftUI)' 카테고리의 다른 글
Comments