如何在scrollview中关闭键盘?

时间:2015-08-19 17:23:21

标签: ios uiscrollview keyboard dismiss

以下代码在触摸键盘外时解除键盘工作正常,直到我在uiview和storyboard中的元素之间插入一个滚动视图以允许滚动。现在它不起作用。任何人都可以建议可能出现的问题吗?

//dismiss keyboard
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    NSLog(@"touchesBegan:withEvent:");
    [self.view endEditing:YES];
    [super touchesBegan:touches withEvent:event];
}

0 个答案:

没有答案