我知道以前有人问过这个问题,但是在运行此代码以选择视频时出现错误。
-(void)video
{
UIImagePickerController *imagePicker =
[[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.sourceType =
UIImagePickerControllerSourceTypePhotoLibrary;
imagePicker.mediaTypes = [[NSArray alloc] initWithObjects:(NSString *)kUTTypeMovie,nil];
[self presentModalViewController:imagePicker animated:YES];
}
此代码将我带到应显示视频的窗口。但是窗口是空白的。显示的消息是“没有视频,您可以将照片和视频同步到您的 iPod ......相册和视频”。我知道当视频库中没有视频时会显示此消息。但是我导入了很多视频,但仍然显示此错误。