I am able to Push a newview controller in below Method on iOS 7, while same code doesn't work on iOS 6. On iOS 6 it pushes view but Navigation bar show below the status bar. View look so Ugly. Can some one have any idea. Thanks
Already checked :
UIImagePickerController's pushViewController misplace pushed view behind the navigation bar
- (void) imagePickerController:(UIImagePickerController *)picker
didFinishPickingImage:(UIImage *)image
editingInfo:(NSDictionary *)editingInfo
{
AddEffectViewController *addEffectViewController=[self.storyboard instantiateViewControllerWithIdentifier:@"AddEffectViewController"];
addEffectViewController.originalImage=image;
picker.navigationController.navigationBar.translucent = true;
[picker setNavigationBarHidden:NO animated:YES];
[picker pushViewController:addEffectViewController animated:YES];
}