我想为十进制数字添加自定义键(图像上的红点),我该怎么做?
问问题
351 次
2 回答
2
要解决此问题,您只需将键盘类型更改为 UIKeyboardTypeNumbersAndPunctuation:
amountTextField.keyboardType = UIKeyboardTypeNumbersAndPunctuation;
如果你使用它,那么也不需要添加工具栏......你只需将 UIKeyBoard 的“RETURNKEYTYPE”添加为 UIReturnKeyDone
amountTextField.returnKeyType = UIReturnKeyDone;
例如:
amountTextField = [[UITextField alloc] initWithFrame:CGRectMake(100, 4, 190, 26)];
amountTextField.backgroundColor = [UIColor clearColor];
amountTextField.keyboardType = UIKeyboardTypeNumbersAndPunctuation;
amountTextField.returnKeyType = UIReturnKeyDone;
amountTextField.delegate = self;
于 2012-12-10T08:39:19.230 回答
0
解决了。我只需要像屏幕截图一样选择键盘:“小数点”。
于 2012-12-10T16:24:01.140 回答