I am having some difficulty understanding what objects are supposed to be synthesized. For example:
@interface DoSomething : UIView
@property (strong, nonatomic) UIColor *frameColor;
@property BOOL toggleScrollability;
- (void) changeBackgroundColorOfView;
@end
In the .m
file, which of these three items should be synthesized? Is there any disadvantage if I try and synthesize them all? In general, what is the rule of thumb for what objects you are supposed to synthesize?