UITextField 的 IOS 和 get/lost 焦点中的 AdjustPan 模拟

AdjustPan analog in IOS and get/lost focus for UITextField

我将 VS 与 Xamarin 一起使用(不是 Xamarin.Forms)。 现在看起来像

在IOs中有没有类似Android AdjustPan的东西。

第二个问题 - 如何以编程方式 get/lost UITextField 的焦点?

Is there anything like Android AdjustPan in IOs.

您可以使用第三方工具来管理您的键盘位置。

例如:IQKeyboardManager , you could add it via NuGet here.

And second question - how to get/lost focus of UITextField programmatically?

获取焦点:

textfield.BecomeFirstResponder();

失去焦点:

textfield.ResignFirstResponder();