首页 > 代码库 > tableview获取选中cell对象

tableview获取选中cell对象

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

 
        
        UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
        
        

    

}

tableview获取选中cell对象