You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.
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
The text was updated successfully, but these errors were encountered: