You cannot use the address book to create custom content in your application. So you have to implement your own view to collect information for storage in your database (sqlite?)
If you create a contact or modify existing contact information, you can use the address book structure.
Answer the question in the comment (how to do this for this user interface)
Yes, group the table view to get the background you want.
Among the many possible solutions, here is perhaps the simplest:
- You have 2 sections in your table.
- The first section has a special cell. Only one line in this section. You can use Interface Builder to create cell content, or you can build code.
- The second section contains similar cells. It can contain as many fields as you need. Just specify the UITableViewCell style as
UITableViewCellStyleValue2 and specify the appropriate values
source share