What is the @private
for in the file generated by Core Data below? I know what @private means in Objective-C, but there are not instance variables listed after it, so can't I just take it out?
//
// Event.h
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@interface Event : NSManagedObject {
@private
}
@property (nonatomic, retain) NSDate * timestamp;
@end
//
// Event.m
//
#import "Event.h"
@implementation Event
@dynamic id;
@end