2014 03 03 ios ui text field password 他参照

入力したタイミングで再計算する。

Connection inspectorで

Sent Eventの中で[Editing Changed]

婚外はCCValidatedTextFieldを使おう

password

Attribute InspectorのText Fieldで Return Keyの下にあるSecure にチェック

まだは

UITextField *textField = (UITextField *)[self.view viewWithTag:1000];
// YESに設定することでパスワードは見えなくなる
textField.secureTextEntry = YES;
[textField setSecureTextEntry:YES];

他参照

http://dev.classmethod.jp/references/ios-7-uikit-control-text-field/