123456789101112131415161718192021 |
- //
- // NSArray+JZExtension.h
- // JIZHANG
- //
- // Created by jikaipeng on 2017/11/21.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface NSArray (JZExtension)
- /*!
- @method objectAtIndexCheck:
- @abstract 检查是否越界和NSNull如果是返回nil
- @result 返回对象
- */
- - (id)objectAtIndexCheck:(NSUInteger)index;
- @end
|