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
- UICollectionView
- combine
- RxCocoa
- uiscrollview
- ios
- swift documentation
- map
- 애니메이션
- SWIFT
- HIG
- collectionview
- ribs
- 리팩토링
- UITextView
- 클린 코드
- Human interface guide
- Clean Code
- Refactoring
- uitableview
- Observable
- Protocol
- Xcode
- rxswift
- 스위프트
- swiftUI
- MVVM
- 리펙터링
- tableView
- 리펙토링
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swiftUI] TextField ViewModifier, SecureField 사용 방법 본문
iOS 기본 (SwiftUI)
[iOS - swiftUI] TextField ViewModifier, SecureField 사용 방법
jake-kim 2022. 8. 1. 23:07
* TextField 기본 개념 (@FocusState, 키보드 숨기기 사용 방법)은 이전 포스팅 글 참고
ViewModifier
- ViewModifier는 Text ViewModifier에서 알아본 내용처럼, SwiftUI에서는 상속이 불가능한 Struct를 사용하고 있고 이 때 컴포넌트화해서 쓰고 싶은 경우 Modifer를 이용하여 사용
ex) Text에서 Modifier를 사용한 경우
(정의하는 쪽)
// MyTextModifier.swift
import SwiftUI
struct MyTextModifier: ViewModifier {
func body(content: Content) -> some View {
content
.font(.system(size: 24, weight: .bold, design: .default))
.foregroundColor(.blue)
}
}
(사용하는쪽)
struct ContentView: View {
var body: some View {
Text("my_text")
.modifier(MyTextModifier())
}
}
TextField ViewModifier
- TextField도 마찬가지로 ViewModifier 프로토콜을 구현하는 Struct를 만들어서 구현
struct PrimaryRoundTextField: ViewModifier {
func body(content: Content) -> some View {
}
}
- 텍스트 필드를 사용할 때 일반적으로 불필요한 옵션들 (자동 완성, 첫번째 글자가 대문자로 변환)을 disable 하는 부분도 선언
struct PrimaryRoundTextField: ViewModifier {
func body(content: Content) -> some View {
content
.font(.system(size: 16))
.textFieldStyle(.roundedBorder)
.foregroundColor(.black)
.textInputAutocapitalization(.never)
.disableAutocorrection(true)
}
}
- 사용하는쪽
- 이전 포스팅 글 에서 알아본대로, TextField를 사용할 땐 placeholder부분과 입력되는 상태를 저장할 @State 프로퍼티가 필요
- TextField 선언
struct ContentView: View {
@State private var username = ""
var body: some View {
TextField(
"입력하세요",
text: $username
)
.padding()
}
}
- .modifier()를 통해 위에서 정의한 인스턴스를 주입하여 완성
struct ContentView: View {
@State private var username = ""
var body: some View {
TextField(
"입력하세요",
text: $username
)
.modifier(PrimaryRoundTextField()) // <-
.padding()
}
}
SecureField
- SecureField는 TextField와 동일한 방법으로 사용
@State private var password = ""
SecureField(
"Password",
text: $password
)
* 전체 코드: https://github.com/JK0369/ExSecureTextField-swiftUI
* 참고
https://developer.apple.com/documentation/swiftui/securefield
'iOS 기본 (SwiftUI)' 카테고리의 다른 글
Comments