我想列出所有视频。不仅是照片库中的视频,还包括视频应用程序中的视频,包括电影、电视节目、音乐视频等进入我的应用程序。
当我像这样使用 ALAsset 时:
ALAsset *asset = [videoLibrary objectAtIndex:indexPath.row];
videoURL = [[asset defaultRepresentation] url];
[videoURLs addObject:videoURL];
[cell.textLabel setText:[NSString stringWithFormat:@"Video %d", indexPath.row+1]];
[cell.imageView setImage:[UIImage imageWithCGImage:[asset thumbnail]]];
在 (UITableViewCell *)tableView:cellForRowAtIndexPath: 方法中,只会显示照片库中的视频。有没有办法获得所有类型?
提前致谢