如何在iOS键盘Swift 3中将“123”模式设置为默认模式

时间:2017-11-13 11:03:17

标签: ios swift keyboard

设置键盘整体类型的代码:

self.Value.keyboardType = UIKeyboardTypeDefault

如何在启动时将默认键盘模式从“ABC”设置为“123”?或者甚至只设置“123”模式。

有什么想法吗?

As default mode

Only this mode

2 个答案:

答案 0 :(得分:1)

在故事板中单击文本字段,然后转到属性,在那里您将找到键盘,您可以选择数字键盘或数字和标点符号See the image for more information

答案 1 :(得分:0)

请设置UIKeyboardTypeNumbersAndPunctuation。

self.Value.keyboardType = UIKeyboardTypeNumbersAndPunctuation