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;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容