Why this:
Code:
@interface ViewControllerTextEditor : UIViewController <UITableViewDelegate, UITableViewDataSource>
{
float fontSize;
NSString *fontName;
}
@property (nonatomic, assign) float fontSize;
@property (nonatomic, assign) NSString *fontName;
And not just this:
Code:
@interface ViewControllerTextEditor : UIViewController <UITableViewDelegate, UITableViewDataSource>
@property (nonatomic, assign) float fontSize;
@property (nonatomic, assign) NSString *fontName;
??? Is the second one approved by apple?