各行に UITextField を持つ UITableView があります。ユーザーがテーブルビューの外に触れて、テキスト フィールドの選択を解除すると、メソッドを呼び出したいと思います。
ただし、ユーザーがテーブルの別の行を選択した場合、そのようなメソッドを呼び出したくありません。
ありがとう
**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;
}