您的位置:首页 > 移动开发 > IOS开发

Xamarin.iOS - Handing Keyboard

2016-04-14 17:43 393 查看
1. Scroll view when keyboard hide your input views
LINK - http://www.gooorack.com/2013/08/28/xamarin-moving-the-view-on-keyboard-show/ 2. Hide keyboard on touching empty space of current UIViewController
public override void TouchesBegan(NSSet touches, UIEvent evt)
{
base.TouchesBegan(touches, evt);
this.View.EndEditing(true);//hide keyboard on touching empty
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: