- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.row==0) {
//Edit the textView in this cell
}
有没有办法做到这一点?如何?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.row==0) {
//Edit the textView in this cell
}
有没有办法做到这一点?如何?
例如,您有一个自定义 UITableViewCell 与
@property (nonatomic, retain) UITextView* textView;
所以,出现键盘
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.row==0) {
[tableView cellForRowAtIndexPath:indexPath]textView]becomeFirstResponder];
}
}
如果您已将 textview 作为子视图添加到单元格 contenview,那么您可以试试这个
{
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];
}
}
}