When exactly do I have to add @property (nonatomic, retain) and @synthesize? Also, when is declaring IBOutlet someObject enough? How i
@property (nonatomic, retain)
@synthesize
IBOutlet someObject
Its not needed if you dont want the variables or objects to be accessed outside the class by other objects.