以下代码在触摸键盘外时解除键盘工作正常,直到我在uiview和storyboard中的元素之间插入一个滚动视图以允许滚动。现在它不起作用。任何人都可以建议可能出现的问题吗?
//dismiss keyboard
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
NSLog(@"touchesBegan:withEvent:");
[self.view endEditing:YES];
[super touchesBegan:touches withEvent:event];
}