Skip to content

Commit 493c674

Browse files
author
phoebus
committed
修改NSObject+BXOperation.h的api
1 parent 8f27e90 commit 493c674

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

BaixingSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
Pod::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"

Pod/Classes/BaixingSDK/Category/NoCrash/NSObject+BXOperation.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
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;
@@ -26,7 +26,7 @@
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;

Pod/Classes/BaixingSDK/Category/NoCrash/NSObject+BXOperation.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)