使用するpushViewController
と、ナビゲーション ボタンのある空白のビューが表示されますが、そのSaved photos
理由がわかりません。ReportViewController
画像を選択してから移動したい。
これは私のコードで、問題ないようです。何が間違っている可能性がありますか?
-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{
//Geting the image from the camera
image = [info objectForKey:UIImagePickerControllerOriginalImage];
ReportViewController *imageSelectionVC = [[ReportViewController alloc] init];
[imageSelectionVC.imageReport setImage:image];
[picker pushViewController:imageSelectionVC animated:YES];
}