5

我知道以前有人问过这个问题,但是在运行此代码以选择视频时出现错误。

-(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 ......相册和视频”。我知道当视频库中没有视频时会显示此消息。但是我导入了很多视频,但仍然显示此错误。

4

1 回答 1

4

你应该看看这个“HowTo”:http ://www.raywenderlich.com/13418/how-to-play-record-edit-videos-in-ios 。这对我帮助很大。
您只需要第一部分。

于 2012-11-26T12:59:32.600 回答