CoreData Best Practice using Modal View Controller
18 views
Skip to first unread message
marcio
unread,
Nov 13, 2009, 2:20:59 PM11/13/09
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 iPhone Application Development Auditors
Im using a UITableViewController to read from a CoreData Stack. That
works fine. Ive added a + button on the nav stack to add a new
recordset to my coredata. The + event brings up a modal view
controller which accepts the data fine. But when i try to have the
Send IBAction call my CustomObject.m alloc init method in order to
create a new instance, it crashes saying unrecognized selector sent to
the instance xxxxxxx. I am thinking maybe i cant call an init method
on my CustomObject class because its made to be used solely by the
CoreData NSManagedObject context and model...
Is this correct? What would be the best way to work around this
then?