萤石云 iOSSDK,移植跨平台相关工程
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  NSArray+DDKit.h
//  DDCategory
//
//  Created by DeJohn Dong on 15/4/25.
//  Copyright (c) 2015年 DDKit. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@interface NSArray (DDKit)
 
/**
 *  Fixed the issue of array index beyond bounds
 *
 *  @param index The array index
 *
 *  @return Object in array
 */
- (id)dd_objectAtIndex:(NSUInteger)index;
 
@end