我有一个 UITableView,每行都有一个 UITextField。当用户触摸表格视图之外,取消选择文本字段时,我想调用一个方法。
但是,如果用户选择表的另一行,我不想调用这样的方法。
谢谢
** alloc_iNit 的代码**:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
CMTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[CMTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
[[cell textField] setTag:[indexPath row]];
[[cell textField] setDelegate:self];
NSString *tagName = [tagsDisplayName objectAtIndex:[indexPath row]];
[[cell textField] setText:tagName];
return cell;
}