Please look at the issue I’m facing.
I have one activity to perform with following features.
With CoreData I like to add employees records. Records having following attributes:
- employee name(
NSString) - empnumber(
NSString) - phoneNumber(arrayType)
- attendance(array type).
and after I save these record if I’d like to edit phonenumber ao attendence i can do so and save back to CoreData.
Please help me out. What is the good approach of doing this?
If I understand your question correct, you haven’t done anything to work with core data in your project? I really think the best way to learn how to work with core data is to read AND follow one of the many excellent tutorials found on google.
Follow something like this tutorial http://timroadley.com/2012/02/09/core-data-basics-part-1-storyboards-delegation/ and I believe you will be able to get your project started.