Quote:
Originally Posted by AaronVee
How would one insert a database into an iPhone app? of which people can filter to find what they are looking for in the database? any ideas?
much appreciated,
A.
|
Core Data is a good choice. It integrates closely with the iOS UI. It's really easy to connect a Core Data database to table views, and you can use add a search controller to a table view to filter the results.
Core Data is fairly advanced stuff, however. you need to be comfortable with MVC, KVC/KVO, delegates, proxy objects, and various other design patterns.