是否可以按照为 ipad 设置密码时显示的方式显示键盘?
问问题
2176 次
1 回答
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;
}
于 2010-09-08T20:20:26.857 回答