如何在使用Mono Touch点击iphone中的任何地方时点击键盘?

时间:2011-11-21 08:51:06

标签: iphone xamarin.ios

我需要隐藏键盘,只要我点击iPhone的任何部分的视图使用monotouch。

1 个答案:

答案 0 :(得分:0)

你可以试试......

     - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
     {
          [textFieldName resignFirstResponder];

      }