views:

184

answers:

2

I've added an ABPeoplePickerNavigationController but it doesn't display correctly in landscape. I'm using the iPhone SDK 2.2.

    ABPeoplePickerNavigationController *ab = [[ABPeoplePickerNavigationController alloc] init];
[ab setPeoplePickerDelegate:self];
[self presentModalViewController:ab animated:YES];

It displays like this with the search bar being cut off: screencast.com/t/4gVhonWFzT8

Any suggestions?

A: 

currently there is no landscape view for the Address Book if you are using the 2.2.1 SDK.

Sheehan Alam
+1  A: 

I deployed the address book as-is on the device. It just shows up weird on the simulator. It shows up fine in landscape on the device.

Henry Balanon