Just spotted something... in this declaration, assign is redundant; as it's the default.
@property (assign) NSInteger yearReleased;
Also, I should point out that this will bite you (but not too hard, the compiler will issue warnings) if you leave out retain or copy on object-type properties in a non-gc environment.
by britt — Oct 28
@property (assign) NSInteger yearReleased;
Also, I should point out that this will bite you (but not too hard, the compiler will issue warnings) if you leave out retain or copy on object-type properties in a non-gc environment.