在为ipad设置密码时,是否可以按照显示的方式显示键盘?
答案 0 :(得分:4)
不幸的是没有,但是我要复制的是,使用界面构建器在我的密码视图中构建了一组像键盘一样的按钮。然后将每个按钮链接到将更改文本字段的命令。
- (IBAction) button9_clicked:(id) sender{
if ([self textField:theTextField shouldChangeCharactersInRange:range replacementString:@"9"]){
self.theTextField.text=[self.theTextField.text stringByAppendingString:@"9"];
range.location = self.theTextField.text.length;
}
else
range.location = self.theTextField.text.length;
}