1. 使用UITextField設置明文及密文之間切換后,光標的位置可能會出現偏移出錯(因為密文方式占位符更寬一點)全景。這個應該是UITextField這個控件本身的問題,但這個問題在iOS10系統(tǒng)就沒有了瓮栗,好像蘋果已經做了更改,下面的解決辦法是針對除了iOS10系統(tǒng)適配的調整靴寂。
在明文/密文切換的事件里面,加多幾句話:
//顯示和隱藏登錄視圖的密碼憋他。
-(void)showAndHidePassword:(UIButton*)sender
{
//避免明文/密文切換后光標位置偏移
self.passwordTextField.enabled=NO;// the first one;
self.passwordTextField.secureTextEntry= sender.selected;
sender.selected= !sender.selected;
self.passwordTextField.enabled=YES;// the second one;
[self.passwordTextFieldbecomeFirstResponder];// the third one
}
2. 使用UITextField從明文切換到密文后宿崭,輸入任何值都會將密文的輸入先清空亲铡。這個是UITextField默認的設置,好像也沒有一個屬性值可以直接控制吧葡兑。不過在代理里面奖蔓,加多一個判斷也能避免密文清空的問題,如下:
- (BOOL)textField:(UITextField*)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString*)string
{
//明文切換密文后避免被清空
NSString*toBeString = [textField.textstringByReplacingCharactersInRange:rangewithString:string];
if(textField ==self.passwordTextField&& textField.isSecureTextEntry) {
textField.text= toBeString;
returnNO;
}
returnYES;
}