选择cell
并在其中写入内容后,我想点击键盘上的返回/下一个按钮,然后移动到下一个cell
,这就是我想要实现的目标。但是在我的方法breakpoint
上放置textfieldShouldReturn
之后,即使按下了返回/下一个键,我发现它也没有被访问过。有人可以解释原因吗?
谢谢。
答案 0 :(得分:0)
cell
是什么意思?它只会在UITextField
中cell
时调用,并且delegate
设置为self
。
UITextField *txt=[[UITextField alloc]initWithFrame:CellFrame];
text.tag=indexPath.row;
txt.delegate=self;
[cell.contentView addSubview:txt];
然后肯定会调用textFieldShouldReturn
方法。返回时点击
答案 1 :(得分:0)
@interface WordListTableController : UITableViewController <UITextFieldDelegate>
{
}
@end
//自定义表格视图单元格的外观。 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
UITextField *FirstField = [[UITextField alloc] initWithFrame:CGRectMake(10, 10, 130, 25)];
FirstField.delegate = self;
[FirstField setTag:indexPath.row];
FirstField.returnKeyType = UIReturnKeyNext;
[cell.contentView addSubview:FirstField];
[FirstField release];
return cell;
}
// Handle any actions, after the return/next/done button is pressed
- (BOOL)textfieldShouldReturn:(UITextField *)textfield
{
[textfield resignFirstResponder];
return NO;
}