I want to make an entity for a workout Routine.
I'll name the entity "Routine". The user is prompted with a UIAlert with text prompt to enter a name for each of the days (for example 1) chest day, 2) back day, 3) legs day, etc.). And within each of these days will be a list of exercises they choose to be done that day.
I have all the exercises stored in a dictionary within a .plist right now.
I need help structuring the attributes, etc for Routines.
I'm thinking having an attribute for Day (where they name the day) and then thats where I'm stuck. I would assume to use a dictionary or an array to hold that day's exercises but this can't be done in Core Data.