Objects not being added to NSMutableArray Objective -C
I'm trying to simply add objects to a mutable array but they WILL NOT insert. I'm not getting errors or anything and I can't figure out whats going on. In my main delegate file I split an array into 4 separate strings like so. NSArray *split=[currentParsedCharacterData componentsSeparatedByString:@"|"]; NSLog([split objectAtIndex:3]); NSString *date=[split objectAtIndex:0]; NSString *venue=[split objectAtIndex:1]; NSString *event=[split objectAtIndex:2]; NSString *city=[split objectAtIndex:3]; I've traced out the string values and they are definitely there. Up next I try to add these string