AlertView with password
1. setAlertViewStyle:UIAlertViewStyleSecureTextInput
UIAlertView *alertView = [[UIAlertView alloc]
initWithTitle:@"Password"
message:@"Please enter your password:"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Ok", nil];
[alertView setAlertViewStyle:UIAlertViewStyleSecureTextInput];
[alertView show];
2. setAlertViewStyle:UIAlertViewStyleLoginAndPasswordInput
...
[alertView setAlertViewStyle:UIAlertViewStyleLoginAndPasswordInput];
...
转载于//www.cnblogs.com/davidgu/p/3478760.html
还没有评论,来说两句吧...