Files
yinmeng-ios/xplan-ios/Base/Tool/Safe/NSArray+Safe.h
2022-11-11 15:11:14 +08:00

17 lines
237 B
Objective-C

//
// NSArray+Safe.h
// xplan-ios
//
// Created by 冯硕 on 2022/11/11.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NSArray (Safe)
-(id)safeObjectAtIndex1:(NSUInteger)index;
@end
NS_ASSUME_NONNULL_END