我在向uicollectionview添加多个视频时遇到问题。 我可以将多个图像添加到uicollectionview中,并且它们可以正确显示。 但是,当我尝试添加多个视频时,只会添加最后添加的视频。
//从手机图库中选择图片/视频
- (void)chooseExistingImagesButton:(id)sender {
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeSavedPhotosAlbum]) {
UIImagePickerController *picker = [[UIImagePickerController alloc]init];
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
picker.mediaTypes = [[NSArray alloc] initWithObjects:(NSString *)kUTTypeMovie, (NSString *)kUTTypeVideo, (NSString*)kUTTypeImage, nil];
picker.allowsEditing = NO;
picker.delegate = self;
[self presentViewController:picker animated:YES completion:nil];
}
else {
UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:nil message:@"Sorry, we cannot detect a camera on this device." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alertView show];
}
[imageCollectionView reloadData];
[videoCollectionView reloadData]; }
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
[self targetImageArray];
[self targetVideoArray];
NSString *mediaType = [info objectForKey:UIImagePickerControllerMediaType];
if ([mediaType isEqualToString:(NSString *)kUTTypeImage]) {
NSString *selectedImage = [info objectForKey:UIImagePickerControllerOriginalImage];
[targetImageArray addObject:selectedImage];
[targetImageArray componentsJoinedByString:@","];
}
else if (([mediaType isEqualToString:(NSString *)kUTTypeVideo]) || ([mediaType isEqualToString:(NSString *)kUTTypeMovie])) {
NSString *moviePath = [info objectForKey:UIImagePickerControllerMediaURL];
[targetVideoArray addObject:moviePath];
[targetVideoArray componentsJoinedByString:@","];
}
[imageCollectionView reloadData];
[videoCollectionView reloadData];
[self dismissViewControllerAnimated:YES completion:^{NSLog(@"Finished Picking Image or Video");}]; }
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker {
[self dismissViewControllerAnimated:YES completion:^{NSLog(@"Image picker view dismissed");}]; }
//加载集合视图
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
return 1; }
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
if (collectionView.tag == ImageCell) {
return [targetImageArray count];
}
if (collectionView.tag == VideoCell) {
return [targetVideoArray count];
}
return 0; }
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
if (collectionView.tag == VideoCell) {
static NSString *videoCellIdentifier = @"VideoCell";
TargetVideoCell *videoCell = [collectionView dequeueReusableCellWithReuseIdentifier:videoCellIdentifier forIndexPath:indexPath];
movieUrl = [NSURL URLWithString:[NSString stringWithFormat:@"%@", [targetVideoArray objectAtIndex:indexPath.row]]];
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:movieUrl options:nil];
AVAssetImageGenerator *generator = [AVAssetImageGenerator assetImageGeneratorWithAsset:asset];
generator.appliesPreferredTrackTransform = YES;
UIImage *image = [UIImage imageWithCGImage:[generator copyCGImageAtTime:CMTimeMake(0, 1) actualTime:nil error:nil]];
videoCell.targetMovieView.image = image;
[moviePlayer.view setFrame:videoCell.targetMovieView.frame];
moviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:movieUrl];
return videoCell;
}
if (collectionView.tag == ImageCell) {
static NSString *imageCellIdentifier = @"ImageCell";
TargetImageCell *imageCell = [collectionView dequeueReusableCellWithReuseIdentifier:imageCellIdentifier forIndexPath:indexPath];
imageCell.targetImageView.image = [targetImageArray objectAtIndex:indexPath.row];
return imageCell;
}
return 0; }
//播放视频
- (IBAction)playMovie:(id)sender {
[self presentMoviePlayerViewControllerAnimated:moviePlayer];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playMovieFinished:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer]; }
- (void)playMovieFinished:(NSNotification *)theNotification {
[[NSNotificationCenter defaultCenter] removeObserver:self name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer];
[moviePlayer.view removeFromSuperview];
moviePlayer = nil;
[self dismissMoviePlayerViewControllerAnimated]; }
答案 0 :(得分:0)
在每个cellForRow上,您再次启动电影播放器。 moviePlayer - 这是您班级的财产。
<强>解决方案:强>
每个小区都必须有自己的电影播放器。
videoCell.moviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:movieUrl]; [videoCell.moviePlayer.view setFrame:videoCell.targetMovieView.bounds];
有一个电影播放器和按钮点击事件