I've noticed that some generated classes only declare class properties/variables via @property, and don't include them within the @interface, as such:
@interface AddItemViewController : UITableViewController {
}
@property (nonatomic, retain) UITextField *itemName;
I was just curious if that's an acceptable way to do it, or if that is done for different reasons?
I normally do this:
@interface AddItemViewController : UITableViewController {
UITextField *itemName;
}
@property (nonatomic, retain) UITextField *itemName;
I declare it first in the @interface and then add the @property for it...
* Update *
I just wanted to update this a bit, because it's still not 100% clear to me.
I always thought that to declare a @property, you first needed to declare it within the @interface first, and then I saw this:
@interface mInventoryAppDelegate : NSObject <UIApplicationDelegate> {
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain, readonly) NSManagedObjectContext *managedObjectContext;
@property (nonatomic, retain, readonly) NSManagedObjectModel *managedObjectModel;
@property (nonatomic, retain, readonly) NSPersistentStoreCoordinator *persistentStoreCoordinator;
- (void)saveContext;
- (NSURL *)applicationDocumentsDirectory;
@property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
@end
All of those @property declarations are declared only as @properties, and not within the @interface.
For example, if I had say NSString *myString - I can declare that in the @interface and not as a @property and still have access to it no problem, but the getters and setters won't be created. I could also declare it in both. But what if I just declare it as @property, as such:
@interface AddItemViewController : UITableViewController {
}
@property (nonatomic, retain) NSString *myString;
Notice how I didn't add it between the @interface { } - how does it differ.
Sorry for repeating, but I'm just trying to reword this so that I can get an answer that makes more sense to me.