File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Pod/Classes/BaixingSDK/Category/NoCrash Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 99
1010Pod ::Spec . new do |s |
1111 s . name = "BaixingSDK"
12- s . version = "1.0.2 "
12+ s . version = "1.0.3 "
1313 s . summary = "It is a baixing base library."
1414 s . description = "It is a baixing base library. Join us:shaozhengxingok@126.com"
1515 s . homepage = "https://github.com/iException/BaixingSDK"
Original file line number Diff line number Diff line change 1717- (void )bx_setSafeObject : (id )object forSafeKey : (id )key ;
1818- (void )bx_setSafeValue : (id )value forSafeKey : (NSString *)key ;
1919
20- - (void )bx_bx_removeSafeObjectForKey : (id )key ;
20+ - (void )bx_removeSafeObjectForKey : (id )key ;
2121
2222// NSArray
2323- (id )bx_safeObjectAtIndex : (NSUInteger )index ;
2626
2727// NSMutableArray
2828- (void )bx_addSafeObject : (id )object ;
29- - (void )bx_bx_removeSafeObjectAtIndex : (NSUInteger )index ;
29+ - (void )bx_removeSafeObjectAtIndex : (NSUInteger )index ;
3030- (void )bx_replaceSafeObjectAtIndex : (NSUInteger )index withSafeObject : (id )object ;
3131- (void )bx_removeSafeObject : (id )object ;
3232- (BOOL )bx_containsSafeObject : (id )object ;
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ - (void)bx_setSafeValue:(id)value forSafeKey:(NSString *)key
4848 [self bx_setSafeObject: value forSafeKey: key];
4949}
5050
51- - (void )bx_bx_removeSafeObjectForKey : (id )key
51+ - (void )bx_removeSafeObjectForKey : (id )key
5252{
5353 if (NO == [self isKindOfClass: [NSMutableDictionary class ]]) {
5454 return ;
@@ -132,7 +132,7 @@ - (void)bx_addSafeObject:(id)object
132132 }
133133}
134134
135- - (void )bx_bx_removeSafeObjectAtIndex : (NSUInteger )index
135+ - (void )bx_removeSafeObjectAtIndex : (NSUInteger )index
136136{
137137 NSAssert ([self isKindOfClass: [NSArray class ]], @" object is not an array" );
138138
You can’t perform that action at this time.
0 commit comments