Was following this You Tube Video "Making a simple iPhone game, part 2 by TheEagle1100 (DBaird Software), but I tried to do it in slightly different way. Instead of declaring 5 UIImageView calling them "*platform1" to "*platform5", I used an array to save the effort of duplicating.
@property (nonatomic, retain) IBOutlet UIImageView *platform[5];
If I remove the "retain" it will get rid of the 2nd error, but the first error remains....
Based on my "limited" understanding of how "@property" works, it's mainly for the getter and setters, so may be I have to write my own getter/setter or try some other way...
0 comments:
Post a Comment