SKSTableView icon indicating copy to clipboard operation
SKSTableView copied to clipboard

On click of row how to dynamically add subrows in SKSTableview

Open sakshigidwani93 opened this issue 8 years ago • 0 comments

In didSelectRowAtIndexPath, i want to dynamically subrows but this code is not working.

This is my array _arr_Alphabets = [[NSMutableArray alloc] initWithObjects: @[ @[@"A",@"A1",@"A2"], @[@"B", @"B1",@"B2"], @[@"C", @"C1",@"C2"], ], nil]; trying to insert object a3 after a2 [[[_arr_Alphabets objectAtIndex:0] objectAtIndex:0] insertObject:@"A3" atIndex:3];

error unrecognized selector sent to instance

sakshigidwani93 avatar May 15 '16 06:05 sakshigidwani93