I need to have an array of NSNumber* as an attribute on an entity in Core Data. I am thinking I can just store them as string, then in my DAL I can treat them all as an array of NSNumber* but then parse the array into a string with a space in between each value. I could set and get the "intervals" as array of NSNumber*, but actually store them as string. Is this a bad idea?? Is there a better way to do this?
I got the idea to do this off of this answer: Store NSArray In Core Data Sample Code?