我正在使用ALAssetsGroup顯示照片和視頻。ALAssetsGroup setAssetsFilter在iOS中獲取照片和視頻
的ALAssetsGroup是使用此文件管理器有一個叫
- (void)setAssetsFilter:(ALAssetsFilter *)filter;
方法您可以過濾照片
[ALAssetsFilter allPhotos]
或視頻
[ALAssetsFilter allVideos]
但我想照片和視頻。我沒有找到任何方法,其中過濾後,我可以添加他們兩個。
提前
===================編輯等待你的答覆
感謝=========== ===========================
我看到文檔中的以下資產類型: -
//資產類型
extern NSString *const ALAssetTypePhoto // The asset is a photo
extern NSString *const ALAssetTypeVideo // The asset is a video
extern NSString *const ALAssetTypeUnknown // The asset's type cannot be determined.
It could be a sound file, a video or photo file that we don't know about, or something else. This is possible only for assets imported from a camera onto the device.
感謝您的快速回復。我編輯了我的問題,請看看它。 – Ekra 2012-01-05 13:01:51
我仍然認爲'allAssets'是要走的路。這就是我在我自己的應用程序中所做的,我希望用戶選擇照片和視頻。 – 2012-01-05 13:09:47