Post

UIKit - 키보드 수정 제안 탭 제거하기

UIKit - 키보드 수정 제안 탭 제거하기

UITextField를 탭하여 키보드가 올라왔을 때 아래와 같이 수정 제안 탭이 표시됨.

image

이것을 제거하기 위해서는 아래와 같이 코드를 구성하면 됨.

1
2
3
4
5
6
7
8
9
10
11
12
private let nicknameTextField: UITextField = {
  let textField = UITextField()
        
  ...
        
  textField.autocorrectionType = .no
  textField.spellCheckingType = .no
        
  ...
        
  return textField
}()

결과

image

Reference

This post is licensed under CC BY 4.0 by the author.