我有一个带有 CustomCells 的 UITableView,其中包含一个 TextField。看看我上传的图片。
Picture1 Picture2 我希望如果我开始滚动键盘应该隐藏。
我试过了
- (void) scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
NSLog(@"Got called");
ProductTableCell *cell;
[cell.mengeTextField resignFirstResponder];
}
控制台日志:
2012-04-24 12:57:48.924 Book-App[21029:15803] Got called
2012-04-24 12:57:50.535 Book-App[21029:15803] Got called
2012-04-24 12:57:51.681 Book-App[21029:15803] Got called
但这对我不起作用。
还有其他解决方案吗?