How to resign first responder from text field when user tap elsewhere?

前端 未结 18 3144
野趣味
野趣味 2020-12-14 02:12

I have filled my view with ScrollView (same size as the view) and I\'m stuck at how to resign first responder when user tap elsewhere in the View (or the scrollview). Any id

18条回答
  •  半阙折子戏
    2020-12-14 02:25

    This is the easiest way iv found that works consistently. Just add a tap gesture recognizer on the view and you're good to go.

    - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    
    [self.view endEditing:YES];
    

    }

提交回复
热议问题