mono touch隐藏键盘

来源:互联网 发布:淘宝直通车的扣费规则 编辑:程序博客网 时间:2024/06/11 19:46

有不明白的地方欢迎入群 347636249 探讨

/// <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为UITextView

0 0