如何使数字键盘出现在Xamarin.iOS的视图控制器项中?

时间:2018-09-03 01:20:50

标签: c# ios xamarin uiviewcontroller xamarin.ios

我想使数字键盘出现在视图控制器的入口上。我需要在后端添加些什么,并将其放入ViewDidLoad()中?

谢谢, 乔什

2 个答案:

答案 0 :(得分:1)

在视图中的任何UITextField(或其他键盘控件)上调用BeginFirstResponder

myUITextField.BecomeFirstResponder();

答案 1 :(得分:0)

您可以设置 UITextField KeyboardType ,并调用 BecomeFirstResponder 以显示键盘。

yourUITextField.KeyboardType = UIKeyboardType.NumberPad;
yourUITextField.BecomeFirstResponder();