Wednesday, April 3, 2013

Get custom cell label text on didSelectRowAtIndexPath IOS....


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    
myCustomCell *cell = (myCustomCell*)[tableView cellForRowAtIndexPath:indexPath];

NSLog(@"cell label text...%@",cell.textLabel.text);

}

1 comment: