の中にあるUIImagePickerController
my のサブビューとして追加しています。UINavigationController
UIPopoverController
コードは次のとおりです。
UIViewController *container = [[UIViewController alloc] init];
self.navigationBarHidden = YES;
camera = [[UIImagePickerController alloc] init];
camera.sourceType = UIImagePickerControllerSourceTypeCamera;
[container addChildViewController:camera];
[container.view setFrame:camera.view.frame];
[container.view addSubview:camera.view];
[self pushViewController:container animated:YES];
シャッターアニメーションを除いて、すべてが見栄えがします。中心からずれているように見え、実際には虹彩の中央がビューの上部に当たります。
シャッター アニメーションを修正するにはどうすればよいですか?