使用创建的键盘设置 UITextField 键盘
Set UITextField Keyboard With Created Keyboard
在我的应用程序中,我创建了两个目标:一个用于实际应用程序,另一个用于我的自定义键盘。在我的实际应用中,我有一个UITextField
,其中有一个keyboardType = .numberPad
。我现在的问题是我正在尝试使用自定义键盘设置 UITextField
的 keyboardType
属性。不管怎样,我该怎么做?
你可以myTextField.keyboardType = .numberPad
。这将使键盘成为特定 UITextField
.
的数字键盘
请试试这个:
textField.inputView = myCustomKeyboard().inputView
在我的应用程序中,我创建了两个目标:一个用于实际应用程序,另一个用于我的自定义键盘。在我的实际应用中,我有一个UITextField
,其中有一个keyboardType = .numberPad
。我现在的问题是我正在尝试使用自定义键盘设置 UITextField
的 keyboardType
属性。不管怎样,我该怎么做?
你可以myTextField.keyboardType = .numberPad
。这将使键盘成为特定 UITextField
.
请试试这个:
textField.inputView = myCustomKeyboard().inputView