why adding string to nsmuarray not work? firstly, i add the a NSDictionary by keypath to the NSMutableArray, its work. after that i want to add one more string to that but its not work.
NSMutableArray *_joinornot;
_joinornot = [[NSMutableArray alloc] init];
NSDictionary *tempobject = [[NSDictionary alloc] init];
_joinornot = [tempobject valueForKeyPath:@"groupid"];
until now everything work.
[_joinornot addObject:@"111"];<----unrecongnized selector sent to instance