如何在popover中呈现键盘?,ipad密码锁定风格

时间:2010-09-03 14:08:47

标签: ipad uipopovercontroller uikeyboard popover

在为ipad设置密码时,是否可以按照显示的方式显示键盘?

1 个答案:

答案 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;
}