0
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

if(indexPath.row==0) {
//Edit the textView in this cell   
}

有没有办法做到这一点?如何?

4

2 回答 2

2

例如,您有一个自定义 UITableViewCell 与

@property (nonatomic, retain) UITextView* textView;

所以,出现键盘

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    {

       if(indexPath.row==0) {
          [tableView cellForRowAtIndexPath:indexPath]textView]becomeFirstResponder];
       }
    }
于 2012-08-30T17:19:07.373 回答
1

如果您已将 textview 作为子视图添加到单元格 contenview,那么您可以试试这个

  • (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

 UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

 for(int i=0;i<[[cell.contentView subviews] count];i++)
  {

    if([[[cell.contentView subviews] objectAtIndex:i] isKindOfClass:[UITextView class]])
    {
        [[[cell.contentView subviews] objectAtIndex:i] becomeFirstResponder];
    }
}

}

于 2012-08-30T17:56:28.717 回答