Hi,
I am working on this core data app, and im not exactly shure how to do what i want.
Right now my first view displays a list of playlists. I can add a playlist to the list. The plus sign pops up addViewController. From here i can add a name to the playlist, now comes the tricky part for me..
I want to be able to select songs from a big list i have.
How do i set up this models?
I was thinking something like this:
|Entity: Playlist | |Entity: Song |
|Attribute: name | |Attribute: name |
|Relationship: songs |<<------------->>|Relationship: playlists |
I want songs to be in more than one playlist, sometimes more than once in a playlist, and I want to be able to add more songs to the database.
Anyone know some sample code that does this sort of thing, or give me some hints at how to do this?