I have a class where a NSMutableArray object is formed, as so:
navBarColour = [[NSMutableArray alloc] initWithObjects:colourOfNavBar, nil];
I t
You must add a property to the object containing the array and synthesize it:
@property(nonatomic, retain) NSMutableArray *navBarColour;
Also, change the compiler to Clang and the error messages will be more clear, if you like.