I am using ABPeoplePickerNavigationController for selection of address book contact by user. With this code behind action of a button:
ABPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init];
picker.peoplePickerDelegate = self;
picker.view.frame=self.view.frame;
[self presentModalViewController:picker animated:YES];
[picker release];
When this code runs it rotates the Landscape UI to Portrait and eventually dismisses the controller that presents this ABPeoplePickerNavigationController.
I am getting this problem only in iOS 5, iPad 2. It's working fine with iOS 6.