美文网首页
swift5.x NSArray NSMutableArray

swift5.x NSArray NSMutableArray

作者: Bruce_XHG | 来源:发表于2019-11-27 19:59 被阅读0次

我们写oc的时候经常用到对数组越界的保护分类

@implementation NSArray (ALadd)

- (id)objectAtIndexCheck:(NSUInteger)index
{
    if (index >= self.count) {
        return nil;
    }
    
    id value = [self objectAtIndex:index];
    if (value == [NSNull null]) {
        return nil;
    }
    
    return value;
}

OC的数组越界保护使用:[self.dataNameArry objectAtIndexCheck:index];

swift 对数组的越界保护(NSMutableArray 的拓展就不用写了,可以直接调用NSArray的拓展)

extension NSArray {
    
    subscript (safe index: Int) -> Element? {
        return (0..<count).contains(index) ? self[index] : nil
  }
    
}

swift的数组越界保护使用:self.heightArr[safe:indexPath.row]

相关文章

网友评论

      本文标题:swift5.x NSArray NSMutableArray

      本文链接:https://www.haomeiwen.com/subject/yojmwctx.html