The problem is I need to use properties in NSManagedObject as scalar properties except single one NSDate property.
Can I do this without subclassing? can I just replace
@property (nonatomic) NSTimeInterval birthDate;
with
@property (nonatomic, retain) NSDate * birthDate;
?
Or maybe there is another way to achieve this? Actually I just need one more additional state for my date property to check if nil
(if some date actually set). Can I check it somehow with NSTimeInterval
?
Thanks!