I wonder when I should use Core Data and when I just should keep it easy and use delegate variables?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Delegate is a design pattern, CoreData a persistence framework. You are comparing things, that are not compare-able.
Edit
Delegate:
A delegate is an “entry point” where an objects allows you to define some custom action.
It is similair to callbacks in some language or interface in Java.
Technically a delegate is just a pointer to an object that conforms to a defined protocol
CoreData
CoreData is a Framework for organizing persistence data.