UIKit - UITextField 첫글자 대문자 변환 제거하기
UITextField에 영문 텍스트를 입력하면 첫글자가 대문자로 자동 변환됨.
이 설정을 제거하기 위해선 autocapitalizationType 프로퍼티를 none 설정해줘야함.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import UIKit
import SnapKit
final class RegisterView: UIView {
private let emailTextField: UITextField = {
let textField = UITextField()
...
// 첫글자 대문자 변환 설정 제거
textField.autocapitalizationType = .none
...
return textField
}()
}
This post is licensed under CC BY 4.0 by the author.