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]; // 加上对应的回复昵称
}
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。