I am trying to store times without any date (and preferably no timezone) information associated with them. For example, an employee might have an availability of 9am-11pm, Mon-Fri. You wouldn't store this as every date representing ever (many) future Mon-Fri at those times, but just as arbitrary times that you would add to the dates of the current week.
Also I want to be able to store these times as properties of a Core Data Managed Object.
The only solution I've come up with is storing the times in the hour and minute components of NSDateComponent, but I'm not sure how that will work with Core Data.