私は iOS 6 でこのコードを使用しており、メイン ビューの中央に別のビューを表示できます。ただし、iOS 7 で実行すると、表示されたビューの原点は常に 0,0 になります。どうしよう?
rect= CGRectMake((self.view.bounds.size.width/2)-300,(self.view.bounds.size.height/2)-200,600,400);
self.navigationController.modalPresentationStyle = UIModalPresentationCurrentContext;
[self presentViewController:sVCiPad animated:YES completion:nil];
[sVCiPad.view setFrame:rect];