首页 > 代码库 > ios UITableView 获取点击cell对象

ios UITableView 获取点击cell对象

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

{

    UITableViewCell *cell= [tableView cellForRowAtIndexPath:indexPath]; // 获取cell对象

    UILabel *name = (UILabel *)[cell.contentViewviewWithTag:111]; // 获取昵称

    

    _inputView.inputText.text = [NSStringstringWithFormat:@"回复 %@ :", name.text];// 加上对应的回复昵称

}