ios,给系统类创建分类时,如果只是重写类的方法,可以只有.m文件

在给系统类创建分类时,如果只是重写类的方法,而没有新增方法,则可以在工程中只引入.m文件。但要记得#import相应的系统框架。如下:


ios,给系统类创建分类时,如果只是重写类的方法,可以只有.m文件_第1张图片

#import

@implementation NSArray (Log)

- (NSString *)descriptionWithLocale:(id)locale

{

NSMutableString *strM = [NSMutableString stringWithString:@"(\n"];

[self enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {

[strM appendFormat:@"\t%@,\n", obj];

}];

[strM appendString:@")"];

return strM;

}

@end

你可能感兴趣的:(ios,给系统类创建分类时,如果只是重写类的方法,可以只有.m文件)