ポップオーバーコントローラー内に設定された私のイメージピッカービューコントローラー。iOS 6 ではすべて問題なく動作しますが、iOS 7 では画像が回転し、すべての動きが正反対になります。iPad を左に回すと画像が下に移動し、上に移動すると画像が左に移動するなどです。
カメラを表示するためのコードは次のとおりです。
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
objPopView = [[UIPopoverController alloc] initWithContentViewController:imagePicker];
[objPopView presentPopoverFromRect:CGRectMake(842, 163, 0, 0)
inView:self.view
permittedArrowDirections:UIPopoverArrowDirectionRight
animated:YES];
私のアプリは横向きモードのみを使用していますが、現在は画像が回転しています: