2012-12-10 66 views

回答

0

已解決。我只需要在屏幕截圖上選擇鍵盤:「小數點」。

enter image description here

2

爲了解決這個問題,你可以改變你的鍵盤類型UIKeyboardTypeNumbersAndPunctuation:

amountTextField.keyboardType = UIKeyboardTypeNumbersAndPunctuation; 

如果你使用這個,那麼就沒有必要添加工具欄也...您需要到只需添加 「RETURNKEYTYPE」 UIKeyBoard作爲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; 
+0

如何做到這一點? – CroiOS

+0

這不是解決方案,因爲我可以得到所有按鈕,如: - ,:,anad et。只有我需要的是添加一個額外的按鈕,我的數字鍵盤只有數字。 – CroiOS

+0

沒有問題,但這是我如何處理這項任務.... –

相關問題