I want to use presentModalViewController to show ABPeoplePickerNavigationController.
But the modal controller appears in simple UIInterfaceOrientationPortrait, not upside down. So user have to rotate iPhone to select contact.
Is it possible to present modal view controller in UIInterfaceOrientationPortraitUpsideDown?
Finally I have to subclass ABPeoplePickerNavigationController.
In my derived class I override only
and return YES only for UIInterfaceOrientationPortraitUpsideDown.
And set
before presenting it.