2

私は次のコードを持っています:

SecondViewController *secondView = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];

[imagePicker setSourceType:UIImagePickerControllerSourceTypeCamera];
[imagePicker setCameraOverlayView:secondView.view];
[imagePicker setShowsCameraControls:NO];

[self presentModalViewController:imagePicker animated:YES];

私の質問は、「SecondViewController」からModalViewControllerを閉じるにはどうすればよいですか?

4

2 に答える 2

10

のメソッドimagePickerから以下を呼び出す必要があります。UIImagePickerControllerDelegatesecondView

例えば:

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    // process message
    [imagePicker dismissModalViewControllerAnimated:YES];
}
于 2009-10-09T00:03:10.023 に答える
1

受け入れられた回答はiOS7では機能しなくなりました。以下は、代わりに使用する必要がある方法です。

繰り返しますが、このメソッドはUIImagePickerからで呼び出す必要がありUIImagePickerControllerDelegateます。

-(void) imagePickerController:(UIImagePickerController *)picker
             didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    [[picker presentingViewController] dismissViewControllerAnimated:YES completion:NULL];

}
于 2014-02-13T17:02:11.830 に答える