ios UITableView 获取点击cell对象
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell= [tableView cellForRowAtIndexPath:indexPath]; // 获取cell 对象
UILabel *name = (UILabel *)[cell.contentView viewWithTag:111]; // 获取昵称
_inputView.inputText.text = [NSString stringWithFormat:@"回复 %@ :", name.text]; // 加上相应的回复昵称
}
posted on 2017-05-15 21:40 cynchanpin 阅读(347) 评论(0) 编辑 收藏 举报