Thanks for your answers...
I created the NSMutableArray as follows:
Code:
myNSMutableArray = [[NSMutableArray alloc] init with objects:@"object1.png", @"object2.png", "object3.png"];
"myNSMutableArray is also declared in the .h file, like:
Code:
NSMutableArray *myNSMutableArray;
//below @interface
@property (nonatomic, retain) NSMutableArray *myNSMutableArray;
I guess I'm just doing a stupid mistake here...