/** * Tencent is pleased to support the open source community by making QMUI_iOS available. * Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved. * 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 * http://opensource.org/licenses/MIT * 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. */ // // NSArray+QMUI.m // QMUIKit // // Created by QMUI Team on 2017/11/14. // #import "NSArray+QMUI.h" @implementation NSArray (QMUI) + (instancetype)qmui_arrayWithObjects:(id)object, ... { void (^addObjectToArrayBlock)(NSMutableArray *array, id obj) = ^void(NSMutableArray *array, id obj) { if ([obj isKindOfClass:[NSArray class]]) { [array addObjectsFromArray:obj]; } else { [array addObject:obj]; } }; NSMutableArray *result = [[NSMutableArray alloc] init]; addObjectToArrayBlock(result, object); va_list argumentList; va_start(argumentList, object); id argument; while ((argument = va_arg(argumentList, id))) { addObjectToArrayBlock(result, argument); } va_end(argumentList); if ([self isKindOfClass:[NSMutableArray class]]) { return result; } return result.copy; } - (void)qmui_enumerateNestedArrayWithBlock:(void (NS_NOESCAPE ^)(id _Nonnull, BOOL *))block { BOOL stop = NO; for (NSInteger i = 0; i < self.count; i++) { id object = self[i]; if ([object isKindOfClass:[NSArray class]]) { [((NSArray *)object) qmui_enumerateNestedArrayWithBlock:block]; } else { block(object, &stop); } if (stop) { return; } } } - (NSMutableArray *)qmui_mutableCopyNestedArray { NSMutableArray *mutableResult = [self mutableCopy]; for (NSInteger i = 0; i < self.count; i++) { id object = self[i]; if ([object isKindOfClass:[NSArray class]]) { NSMutableArray *mutableItem = [((NSArray *)object) qmui_mutableCopyNestedArray]; [mutableResult replaceObjectAtIndex:i withObject:mutableItem]; } } return mutableResult; } - (NSArray *)qmui_filterWithBlock:(BOOL (NS_NOESCAPE^)(id _Nonnull))block { if (!block) { return self; } NSMutableArray *result = [[NSMutableArray alloc] init]; for (NSInteger i = 0; i < self.count; i++) { id item = self[i]; if (block(item)) { [result addObject:item]; } } return [result copy]; } - (NSArray *)qmui_mapWithBlock:(id (NS_NOESCAPE^)(id item))block { if (!block) { return self; } NSMutableArray *result = [[NSMutableArray alloc] initWithCapacity:self.count]; for (NSInteger i = 0; i < self.count; i++) { [result addObject:block(self[i])]; } return [result copy]; } @end