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

问题描述 投票:0回答:2

我想让数字键盘出现在视图控制器的入口上。我需要添加到后端才能做到这一点,我会把它放在ViewDidLoad()中吗?

谢谢,乔希

c# ios xamarin uiviewcontroller xamarin.ios
2个回答
1
投票

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

myUITextField.BecomeFirstResponder();

0
投票

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

yourUITextField.KeyboardType = UIKeyboardType.NumberPad;
yourUITextField.BecomeFirstResponder();
© www.soinside.com 2019 - 2024. All rights reserved.