I want to create an iphone application which uses Core Data.
As i understood, only master-detail application template gives me an option to use Core Data. But it creates table view.
What i want to use is view controller not table view controller.
I couldnt use core data with single view application template..
Which way should I follow to overcome this issue?
Thanks.
You should realize that CoreData is a framework that is not bound to any UIKit components like UITableView. You can freely use it in any sort of an application. All you have to do is to create your singleton class that manages CoreData operations and add CoreData.framework to your project.
Here is my DataAccessLayer template:
DataAccessLayer.h
DataAccessLayer.m
You will also have to create an .xcdatamodeld file in order to create your Data Model objects. And replace the name here with appropriate