iOS 数组越界处理 Swift & OC

Swift:

扩展 Array
extension Array {
    subscript (safe index: Int) -> Element? {
        return (0 ..< count).contains(index) ? self[index] : nil
    }
}
使用时:
let array = ["1", "2", "3"]
array[safe: 3] // 此处为nil

OC:

创建NSArray 的Category:
1> Xcode 中 Command+N 新建 Objective-C File
2> File名称自定义,File Type 选择 Category,Class 为 NSArray
3> 创建完毕后在.h中定义

- (id)atIndex:(NSUInteger)iIndex;

.m中实现:

/**
  ifConditionFoundedItReturnsToNil: 宏定义,功能:如果条件成立则返回nil, 括号内为条件.
*/
- (id)atIndex:(NSUInteger)iIndex {
    ifConditionFoundedItReturnsToNil(iIndex >= [self count]);
    id value = [self objectAtIndex: iIndex];
    ifConditionFoundedItReturnsToNil(value == [NSNull null]);
    return nil;
}

你可能感兴趣的:(iOS 数组越界处理 Swift & OC)