Reputation: 33
I would like to create a view like contacts info in new ios4. I've been looking for a document, source code(this is better) or something else but I wasn't lucky. Please if somebody can help me I will be very very happy, I need to show a picture, some fields like textbox and description field. Thanks in advance
Upvotes: 1
Views: 702
Reputation: 1492
Use tableView:viewForHeaderInSection:
for your first table section, and point it to a UIView
you've designed in IB. Take a look at this tutorial.
Upvotes: 0
Reputation: 1780
I think you're talking about the Address Book APIs? Here is a link to the Apple Developer site that should get you started:
It goes over both how to integrate with the Address Book database, and how to just use an Address Book-like view for listing contact information.
Upvotes: 2