mono touch 隐藏键盘

来源:互联网 发布:淘宝店铺收藏怎么刷 编辑:程序博客网 时间:2024/06/03 01:12
/// <summary>/// 隐藏键盘/// </summary>public override void TouchesBegan (NSSet touches, UIEvent evt){base.TouchesBegan (touches, evt);UITouch touch = touches.AnyObject as UITouch;if (touch != null) {utxt.ResignFirstResponder ();}}
utxt是个输入框对象,逻辑判断可以具体一些
0 0
原创粉丝点击