mapega
mapega

Reputation: 33

Create a view like contact info in ios4

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

Answers (2)

jbm
jbm

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

codykrieger
codykrieger

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:

http://developer.apple.com/iphone/library/documentation/ContactData/Conceptual/AddressBookProgrammingGuideforiPhone/100-Introduction/Introduction.html

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.

Controllers: http://developer.apple.com/iphone/library/documentation/ContactData/Conceptual/AddressBookProgrammingGuideforiPhone/400-UI_Controllers/UI_Controllers.html#//apple_ref/doc/uid/TP40007744-CH5-SW1

Upvotes: 2

Related Questions