Reputation: 135
I have been told to do the following:
Implement contact add view like below and let him store in SQL table, contacts will have Name, phone no of mobile, work , fax, email . view should look like below:
My question: Can you clarify me, should I use Addressbook or simply a custom view and a sql database to save data from that custom view? I mean both the options are open here?
Upvotes: 5
Views: 728
Reputation: 59689
You can not use address book to create custom content in your application. So you should implement your custom view to collect information to store in your database (sqlite?)
If you are creating contact / modifying existing contact information, you can use address book framework.
Answer for the question in comment (how to go about for this kinda UI)
Yes, Have the grouped table view to get the desired background
Among the many possible solutions, here is the simplest one perhaps:
UITableViewCellStyleValue2
and specify the values accordinglyUpvotes: 1