我们强哥说,一款好的app,对于崩溃情况绝对是零容忍的,可以数据显示不出来,让用户重新刷新,但不能直接崩溃。因此我们应该尽量减少崩溃。据统计和自己开发经验积累,有很多崩溃都是数组越界或者传入值为nil导致。因此这边从NSString、NSMutableString、NSArray、NSMutableArray、NSMutableDictionary,包装了它们的类方法,从而达到防止崩溃。
一.NSString
1.在NSString类别里添加这四个最常用的操作方法
@interface NSString (Extention)
//判断是否包含字符串aString
- (BOOL)containSafeString:(NSString *)aString;
//NSString 从截取到某个地方
- (NSString *)substringToSafeIndex:(NSUInteger)to;
//NSString 截取range范围
- (NSString *)substringWithSafeRange:(NSRange)range;
//NSString 从某个地方开始截取
- (NSString *)substringFromSafeIndex:(NSUInteger)from;
@end
2.实现:
/**
判断是否包含 字符串 aString
@param aString 子字符串
@return 是否包含
*/
- (BOOL)containSafeString:(NSString *)aString {
BOOL isContain = NO;
if([aString isKindOfClass:[NSString class]]) {
isContain = [self containsString:aString];
}
return isContain;
}
/**
从from位置截取字符串
@param from 截取起始位置
@return 截取的子字符串
*/
- (NSString *)substringFromSafeIndex:(NSUInteger)from {
if ([self isKindOfClass:[NSString class]]) {
if (from <= self.length) {
return [self substringFromIndex:from];
}
}
return nil;
}
/**
从开始截取到to位置的字符串
@param to 截取终点位置
@return 返回截取的字符串
*/
- (NSString *)substringToSafeIndex:(NSUInteger)to{
if ([self isKindOfClass:[NSString class]]) {
if (to <= self.length) {
return [self substringToIndex:to];
}
}
return nil;
}
/**
截取指定范围的字符串
@param range 指定的范围
@return 返回截取的字符串
*/
- (NSString *)substringWithSafeRange:(NSRange)range{
if ([self isKindOfClass:[NSString class]]) {
if ((range.location + range.length) <= self.length && range.location <= self.length && range.length <= self.length) {
return [self substringWithRange:range];
}
}
return nil;
}
二.NSMutableString
1.由于NSMutableString继承自NSString,所以NSString扩展类别里面定义的方法同样适用,现在只扩展了添加方法
@interface NSMutableString (Extention)
// 添加str到字符串末尾
- (void)appendSafeString:(NSString *)str;
@end
2.实现
/**
将str添加到字符串末尾
@param str <#str description#>
*/
- (void)appendSafeString:(NSString *)str {
if ([str isKindOfClass:[NSString class]] && str.length > 0) {
[self appendString:str];
}
}
三.NSArray
1.扩展NSArray获取值方法
@interface NSArray (NSArrayEx)
// 取出 NSArray 第 index 位置 的 值
- (id)objectAtSafeIndex:(NSUInteger)index;
@end
2.实现:
@implementation NSArray (NSArrayEx)
/**
取出NSArray 第index个 值
@param index 索引 index
@return 返回值
*/
- (id) objectAtSafeIndex:(NSUInteger)index {
if([self isKindOfClass:[NSArray class]]) {
if (self.count > index) {
return [self objectAtIndex: index];
}
}
return nil;
}
四.NSMutableArray
1.扩展最常用的添加、移除、插入方法:
@interface NSMutableArray (NSMutableArrayEx)
// 添加 值 到 NSMutableArray 尾部
- (void)addSafeObject:(id)anObject;
// NSMutableArray 移除 第 index 值
- (void)removeSafeObjectAtIndex:(NSUInteger)index;
// 插入 新值 到 NSMutableArray 的 第index 位置
- (void)insertSafeObject:(id)anObject atIndex:(NSUInteger)index;
@end
2.实现:
@implementation NSMutableArray (NSMutableArrayEx)
/**
NSMutableArray 添加 新内容
@param anObject 新内容
*/
- (void)addSafeObject:(id)anObject {
if (anObject) {
[self addObject:anObject];
}
}
/**
NSMutableArray 移除 索引 index 对应的 值
@param index 索引 index
*/
- (void)removeSafeObjectAtIndex:(NSUInteger)index {
if (self.count > index) {
[self removeObjectAtIndex:index];
}
}
/**
NSMutableArray 插入 新值 到 索引index 指定位置
@param anObject 新值
@param index 索引 index
*/
- (void)insertSafeObject:(id)anObject atIndex:(NSUInteger)index {
if (anObject && index <= self.count ) {
[self insertObject:anObject atIndex:index];
}
}
@end
五.NSMutableDictionary
1.扩展NSMutableDictionary设置键值对和移除操作:
@interface NSMutableDictionary (NSMutableDictionaryEx)
// NSMutableDictionary 根据 键 移除键值对
- (void)removeSafeObjectForKey:(id)aKey;
// NSMutableDictionary 添加新的键值对
- (void)setSafeObject:(id)anObject forSafeKey:(id)aKey;
@end
2.实现
@implementation NSMutableDictionary (NSMutableDictionaryEx)
/**
NSMutableDictionary 移除键值对
@param aKey 键值
*/
- (void)removeSafeObjectForKey:(id)aKey {
if (aKey) {
[self removeObjectForKey:aKey];
}
}
/**
NSMutableDictionary 添加新的键值对
@param anObject 值
@param aKey 键
*/
- (void)setSafeObject:(id)anObject forSafeKey:(id)aKey {
if (anObject && aKey) {
[self setObject:anObject forKey:aKey];
}
}
@end
六.最后
送上一张喜欢的图片:
大家有兴趣可以看一下,如果觉得不错,麻烦给个喜欢或star,若发现问题请及时反馈,谢谢!