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
- combine
- 리펙토링
- UITextView
- Human interface guide
- 클린 코드
- collectionview
- 애니메이션
- ribs
- map
- ios
- MVVM
- uiscrollview
- swiftUI
- SWIFT
- uitableview
- 리펙터링
- RxCocoa
- Observable
- clean architecture
- tableView
- UICollectionView
- swift documentation
- Protocol
- Clean Code
- HIG
- 스위프트
- Refactoring
- rxswift
- Xcode
- 리팩토링
Archives
- Today
- Total
목록TextFIeld Modifier (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swiftUI] TextField, @FocusState, 키보드 숨기기 사용 방법
목차) SwiftUI의 기본 - 목차 링크 TextField 값을 입력받을 수 있는 컴포넌트 SwiftUI에서는 @State 상태 프로퍼티 하나를 두고 값이 입력되면 여기에도 입력되도록 구현 struct ContentView: View { @State private var username = "" var body: some View { TextField( "User name", text: $username ) } } @FocusState 텍스트 필드의 포커스 (firstResponder) 관리는 @FocusState를 사용하면 매우 손쉽게 코드에서도 제어가 가능 @FucusState에 사용할 텍스트 필드의 타입을 정의 enum Field { case username case email } email 텍스..
iOS 기본 (SwiftUI)
2022. 7. 31. 19:38