Possible Duplicate:
Property vs. instance variable
Can someone tell me what is the difference between:
@interface SplitApp6DetailViewController : UIViewController <UISplitViewControllerDelegate, MKMapViewDelegate>{
sqlite3 *databaseHandle;
}
and
@interface SplitApp6DetailViewController : UIViewController <UISplitViewControllerDelegate, MKMapViewDelegate>
@property (nonatomic) sqlite3* databaseHandle;
I am confused with these 2 approaches.
Thanks!