[Solved] Creating properties in iOS [closed]
All properties are created manually using the @property declaration. In the latest objective-C you don’t need to add the @synthesize declaration any more. As for IBOutlets, they don’t do anything. In fact, IBOutlets are expanded to nothing. They are just passive tags so that Interface Builder can locate the properties that it can associate objects … Read more