UIImagePickerController na barra de status do iOS 7

No io7, a barra de status no topo de uma vista é um pesadelo. Felizmente eu consegui fazê-la funcionar para que ela ficasse acima da vista. Eu fiz assim:

- (void)viewDidLoad
{
    [super viewDidLoad];
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
         self.view.backgroundColor=[UIColor colorWithRed:(152/255.0) green:(204/255.0) blue:(51/255.0) alpha:1] ;
        CGRect frame = self.topNav.frame; frame.origin.y = 20;
        self.topNav.frame = frame;
    }
....
}

Agora minha barra de status está acima da minha barra de navegação.

Mas quando se trata de chamarUIImagePickerController as coisas são diferentes. O código acima não tem efeito. Eu tentei fazer isso:

- (void)showImagePickerForSourceType:(UIImagePickerControllerSourceType)sourceType
{


    UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init];

 if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {

            CGRect frame = self.imagePickerController.frame; frame.origin.y = 20;
           self.imagePickerController.frame = frame;
        }

    imagePickerController.modalPresentationStyle = UIModalPresentationCurrentContext;
    imagePickerController.sourceType = sourceType;
    imagePickerController.delegate = self;
    self.imagePickerController = imagePickerController;
    self.imagePickerController.allowsEditing=YES;
....
}

e o resultado é:

Alguma chance de que minha barra de status (ao exibir a câmera para tirar fotos) acima dos controles da câmera?

Obrigado.

questionAnswers(5)

yourAnswerToTheQuestion