[ios] UITextField 비밀번호를 숨 깁니다.

로그인 페이지를하고 있습니다. 비밀번호에 대한 UITextField가 있습니다.

분명히, 나는 암호를 보길 원하지 않는다. 대신 입력 할 때 서클을 표시하고 싶습니다. 이를 위해 필드를 어떻게 설정합니까?



답변

UItextField 속성을 secure로 설정하십시오.

이 시도..

textFieldSecure.secureTextEntry = true

textFieldSecure는 UITextField입니다 …


답변

UITextField 암호를 숨기려면 다음과 같이하십시오.

여기에 이미지 설명을 입력하십시오

암호

목표 -C :

  textField.secureTextEntry = YES;

빠른:

  textField.isSecureTextEntry = true 


답변

Interface Builder에서 “보안 텍스트 입력”체크 상자를 체크하십시오

또는

코드 세트에서 :

목표 -C :

yourTextField.secureTextEntry = YES;

빠른:

yourTextField.secureTextEntry = true


답변

secureTextEntry속성을로 설정하십시오 YES.


답변

Xib 파일을 열고 암호 텍스트 필드의 관리자를 열고 보안 속성을 선택하십시오.


답변

스위프트 3.0 :

txtpassword.isSecureTextEntry = true


답변

Swift 3.0 이상에서

passwordTextField.isSecureTextEntry = true