图片调整,暗黑模式屏蔽,加入防闪退代码
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
//
|
||||
// NSMutableArray+AvoidCrash.h
|
||||
// AvoidCrash
|
||||
//
|
||||
// Created by mac on 16/9/21.
|
||||
// Copyright © 2016年 chenfanfang. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface NSMutableArray (AvoidCrash)
|
||||
|
||||
+ (void)avoidCrashExchangeMethod;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
* Can avoid crash method
|
||||
*
|
||||
* 1. - (id)objectAtIndex:(NSUInteger)index
|
||||
* 2. - (void)setObject:(id)obj atIndexedSubscript:(NSUInteger)idx
|
||||
* 3. - (void)removeObjectAtIndex:(NSUInteger)index
|
||||
* 4. - (void)insertObject:(id)anObject atIndex:(NSUInteger)index
|
||||
* 5. - (void)getObjects:(__unsafe_unretained id _Nonnull *)objects range:(NSRange)range
|
||||
*/
|
||||
Reference in New Issue
Block a user