In my iPhone app I have two viewControllers: viewController1 has a tableView that shows a list of Item1 objects viewController2 has a tableView that shows a list of Item2 objects
Where Item1 class and Item2 class inherit from the abstract class ParentItem.
Now I want to make Item2 object a NSManagedObject so I can save it on the device and make the viewController2 use a NSFetchedResultsController to load its tableView with Item2 objects.
But I don't want Item1 to be a NSManagedObject, I want to use it as regular object.
The problem is that if I create ParentItem class as NSManagedObject then Item1 class will also be a NSManagedObject and I can't use it as a regular object (I mean I wont be able to create an Item1 object with regular alloc-init, or can I???)
And if I create ParentItem class as regular NSObject, then Item2 class will also be regular NSObject.