I have a UIViewController that has a parent UITabBarController. At the start the UIViewController is located above the UITabBarController. after returning from the call to address book the UIViewController is located below it (its height increased suddenly)
the call is [self presentViewController:picker animated:YES completion:nil]
picker is the ABPeoplePickerNavigationController
Thanks, roi
Its very different to say, what you need, we have no some your code, but I try to help: Try to change
[self presentViewController:picker animated:YES completion:nil]
onIf it's not help, try to set ViewController's view (which presenting) height in
viewDidLoad
Or you can try to presenting newView without navigation controller:Post comments, how is your result.