【发布时间】:2013-04-23 12:49:24
【问题描述】:
我想列出所有视频。不仅是照片库中的视频,还有视频应用程序中的视频,包括电影、电视节目、音乐视频等进入我的应用程序。
当我像这样使用 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: 方法中,只会显示照片库中的视频。有没有办法获取所有类型?
提前致谢
【问题讨论】:
标签: objective-c uitableview alassetslibrary alasset mpmediaquery