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