I am having problem with adding objects to NSMutableArray *array.
// Controller.m #import \"Controller.h\" @implementation Controller - (void)parser:(NSString
Here is the method I added to Controller class:
- (id)init { self = [super init]; if(self){ array = [[NSMutableArray alloc] init]; } return self; } - (void)dealloc { [array release]; [super dealloc]; }