In your .h:
@property(nonatomic, retain, readonly) NSDate* theDate;
In your .m:
@interface TheClassName()
@property(nonatomic, retain, readwrite) NSDate* theDate;
@end
In your .h:
@property(nonatomic, retain, readonly) NSDate* theDate;
In your .m:
@interface TheClassName()
@property(nonatomic, retain, readwrite) NSDate* theDate;
@end