새소식

인기 검색어

iOS/iOS

[iOS] UITextField

  • -
var textField = UITextField()

// 플레이스 홀더
textField.placeholder = "원하는 내용"

// 테두리 스타일
textField.borderStyle = .원하는 스타일

// 테두리 색상
textField.layer.borderColor = UIColor.원하는색상.cgColor

// 테두리 두께
textField.layer.borderWidth = Float

// 수직 방향 텍스트 배열 위치
textField.contentVerticalAlignment = .원하는 위치

// 내부에 클리어버튼 표시
textField.clearButtonMode = .원하는 스타일

// 알파벳 문자열 입력 시 글자 설정
textField.autocapitalizationType = .원하는 스타일

// 자동완성 (한글은 잘 사용하지 않는다)
textField.autocorrectionType = .원하는 스타일

// 스펠링 체크
textField.spellCheckingType = .원하는 스타일

// 키보드 타입
textField.keyboardType = .원하는 스타일

// 가상 키보드 색상 테마
textField.keyboardAppearance = .원하는 스타일

// Return Key 스타일
textField.returnKeyType = .원하는 스타일

// Auto-enable Return Key 아무 값도 없을때는 리턴키 비활성화
textField.enablesReturnKeyAutomatically = Bool

// Secure Text Entry 비밀번호 처럼 ***로 표시
textField.isSecureTextEntry = Bool

// 편집 시작시 기존 내용 삭제
textField.clearsOnBeginEditing = Bool

'iOS > iOS' 카테고리의 다른 글

[iOS] Xcode Stroyboard 없이 시작하기  (0) 2023.02.02
[iOS] UIStackView  (0) 2023.01.23
[iOS] UIButton  (0) 2023.01.23
[iOS] TableView  (0) 2022.09.20
[iOS] 키보드 자동으로 내리기 및 키보드 위치에 따라 TextField 위치 바꾸기  (0) 2022.06.04
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.