views:

39

answers:

2

I am trying to integrate the information in Addressbook into my iPhone application. Is there any way to push the view controller page into my current controller?

alt text

Thank you.

+1  A: 

Noah Witherspoon has posted the correct answer.

Adam Eberbach
Thank you. It's disappointing to know that iPhone SDK does not provide such a fundamental feature. I hope they will add it some day later.
Winston Chen
This is completely incorrect. ABPersonViewController has been available since the iPhone SDK was first released.
Noah Witherspoon
Hey Noah's absolutely right - whoever marked my answer up, take it off and give it to him!
Adam Eberbach
+3  A: 

That's an ABPersonViewController. You can give it an ABRecordRef (a person) from your address book and push it onto your navigation stack just as you would any other view controller.

Noah Witherspoon
Grand thanks!! It's very helpful!
Winston Chen