How to remove or disable language preferences key from iPad keyboard for specific text field

前端 未结 3 1434
花落未央
花落未央 2021-01-22 04:43

\"Needs1

Needs to remove or disable key from iPad ke

相关标签:
3条回答
  • 2021-01-22 04:48

    set in storyboard

    or manually
    [textField setKeyboardType: UIKeyboardTypeASCIICapable];

    0 讨论(0)
  • 2021-01-22 04:52

    I dont think a key can be removed form key pad, how ever you can add an overlay at the same place over that image.

    0 讨论(0)
  • 2021-01-22 05:09

    You cannot remove a specific button from keyboard unless you create a custom keyboard. But, there are different kinds of keyboard defined already. What you can do is manage the keyboard behaviour.

    [yourTextField setKeyboardType: UIKeyboardType];

    0 讨论(0)
提交回复
热议问题