I use VS with Xamarin (not Xamarin.Forms). Right now it looks like
Is there anything like Android AdjustPan in IOs.
And second question - how to get/lost focus of UITextField programmatically?
Is there anything like Android AdjustPan in IOs.
You can use third-party tool to manage your keyboard position.
For example : IQKeyboardManager , you could add it via NuGet here.
And second question - how to get/lost focus of UITextField programmatically?
Get focus:
textfield.BecomeFirstResponder();
Lost focus:
textfield.ResignFirstResponder();