You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nscoders...@googlegroups.com
I'm in the process of designing and developing my first Cocoa application. I've decided that I'd like to use Core Data for the central data that it will contain. Some of the fields in an entity that I'm creating are like an enumeration type in that they have a fixed number of possible values. What's the best way to accomplish something like that in Core Data?
---
Jon M. Hanson (N7ZVJ)
Homepage: http://the-hansons-az.net/drupal Jabber IM: j...@the-hansons-az.net
Travis Bader
unread,
May 7, 2012, 11:27:02 AM5/7/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nscoders...@googlegroups.com
I personally never found a better way than just storing them in a NSNumber and then putting a enum type def in the entity for use in code. Anyone have a better approach?