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

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

作者: oneYing | 来源:发表于2016-08-16 18:24 被阅读165次

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

    #import <Foundation/Foundation.h>

    @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文

          本文链接:https://www.haomeiwen.com/subject/yyipsttx.html