-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"searchCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
searchField = (UITextField *)[cell viewWithTag:10000];
[searchField resignFirstResponder];
}
好的,我有一个标识符名称为“searchCell”的单元格。此单元格包含一个标签为 10000 的 UITextField,它会在屏幕底部弹出一个键盘。当用户触摸另一个单元格时,必须隐藏键盘,以便用户可以有更大的空间上下滚动。
但是,当键盘弹出并且用户触摸(选择)一个单元格时,上面的代码被调用但不起作用...... :(看起来分配的 UITableViewCell 不是用户当前使用的那个。什么是我在这里做错了吗?