November 2013
Intermediate to advanced
576 pages
19h 3m
English
Formerly, properties needed to be synthesized in the implementation (.m) file for the compiler to generate the accessor methods, like so:
@synthesize myImage;
As of Xcode 4.4/LLVM 4.0, this is no longer necessary because the compiler will now automatically synthesize accessor methods. If a custom name is desired for the underlying instance variable, that can be accomplished using @synthesize.
@synthesize myImage = myImageCustomName;
Read now
Unlock full access