|
1 |
| -/***** |
| 1 | +/** |
2 | 2 | * Tencent is pleased to support the open source community by making QMUI_iOS available.
|
3 | 3 | * Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
|
4 | 4 | * Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
|
5 | 5 | * http://opensource.org/licenses/MIT
|
6 | 6 | * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
7 |
| - *****/ |
| 7 | + */ |
8 | 8 |
|
9 | 9 | //
|
10 | 10 | // QMUIAssetsManager.m
|
@@ -91,14 +91,14 @@ + (void)requestAuthorization:(void(^)(QMUIAssetAuthorizationStatus status))handl
|
91 | 91 |
|
92 | 92 | - (void)enumerateAllAlbumsWithAlbumContentType:(QMUIAlbumContentType)contentType showEmptyAlbum:(BOOL)showEmptyAlbum showSmartAlbumIfSupported:(BOOL)showSmartAlbumIfSupported usingBlock:(void (^)(QMUIAssetsGroup *resultAssetsGroup))enumerationBlock {
|
93 | 93 | // 根据条件获取所有合适的相册,并保存到临时数组中
|
94 |
| - NSArray *tempAlbumsArray = [PHPhotoLibrary fetchAllAlbumsWithAlbumContentType:contentType showEmptyAlbum:showEmptyAlbum showSmartAlbum:showSmartAlbumIfSupported]; |
| 94 | + NSArray<PHAssetCollection *> *tempAlbumsArray = [PHPhotoLibrary fetchAllAlbumsWithAlbumContentType:contentType showEmptyAlbum:showEmptyAlbum showSmartAlbum:showSmartAlbumIfSupported]; |
95 | 95 |
|
96 | 96 | // 创建一个 PHFetchOptions,用于 QMUIAssetsGroup 对资源的排序以及对内容类型进行控制
|
97 | 97 | PHFetchOptions *phFetchOptions = [PHPhotoLibrary createFetchOptionsWithAlbumContentType:contentType];
|
98 | 98 |
|
99 | 99 | // 遍历结果,生成对应的 QMUIAssetsGroup,并调用 enumerationBlock
|
100 |
| - for (NSUInteger i = 0; i < [tempAlbumsArray count]; i++) { |
101 |
| - PHAssetCollection *phAssetCollection = [tempAlbumsArray objectAtIndex:i]; |
| 100 | + for (NSUInteger i = 0; i < tempAlbumsArray.count; i++) { |
| 101 | + PHAssetCollection *phAssetCollection = tempAlbumsArray[i]; |
102 | 102 | QMUIAssetsGroup *assetsGroup = [[QMUIAssetsGroup alloc] initWithPHCollection:phAssetCollection fetchAssetsOptions:phFetchOptions];
|
103 | 103 | if (enumerationBlock) {
|
104 | 104 | enumerationBlock(assetsGroup);
|
@@ -212,8 +212,8 @@ + (PHFetchOptions *)createFetchOptionsWithAlbumContentType:(QMUIAlbumContentType
|
212 | 212 | return fetchOptions;
|
213 | 213 | }
|
214 | 214 |
|
215 |
| -+ (NSArray <PHAssetCollection *> *)fetchAllAlbumsWithAlbumContentType:(QMUIAlbumContentType)contentType showEmptyAlbum:(BOOL)showEmptyAlbum showSmartAlbum:(BOOL)showSmartAlbum { |
216 |
| - NSMutableArray <PHAssetCollection *> *tempAlbumsArray = [[NSMutableArray alloc] init]; |
| 215 | ++ (NSArray<PHAssetCollection *> *)fetchAllAlbumsWithAlbumContentType:(QMUIAlbumContentType)contentType showEmptyAlbum:(BOOL)showEmptyAlbum showSmartAlbum:(BOOL)showSmartAlbum { |
| 216 | + NSMutableArray<PHAssetCollection *> *tempAlbumsArray = [[NSMutableArray alloc] init]; |
217 | 217 |
|
218 | 218 | // 创建一个 PHFetchOptions,用于创建 QMUIAssetsGroup 对资源的排序和类型进行控制
|
219 | 219 | PHFetchOptions *fetchOptions = [PHPhotoLibrary createFetchOptionsWithAlbumContentType:contentType];
|
@@ -284,7 +284,7 @@ + (PHFetchOptions *)createFetchOptionsWithAlbumContentType:(QMUIAlbumContentType
|
284 | 284 | }
|
285 | 285 | }
|
286 | 286 |
|
287 |
| - NSArray *resultAlbumsArray = [tempAlbumsArray copy]; |
| 287 | + NSArray<PHAssetCollection *> *resultAlbumsArray = [tempAlbumsArray copy]; |
288 | 288 | return resultAlbumsArray;
|
289 | 289 | }
|
290 | 290 |
|
|
0 commit comments