-(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を削除しても問題ありません。コードの何が問題になっていますか?