0
-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{

   //added other code

     [self dismissModalViewControllerAnimated:YES];

            UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"" message:@"Photo added to  library" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
            [alert show];
}

「BadaccessError」と表示されているアプリで写真を撮った後、Alertboxを削除しても問題ありません。コードの何が問題になっていますか?

4

1 に答える 1

0

それ以外の[self dismissModalViewControllerAnimated:YES];

使用する[picker dismissModalViewControllerAnimated:YES];

于 2013-03-01T05:43:19.243 に答える