首页 > 代码库 > CategoryAndExtension(一)

CategoryAndExtension(一)

<meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> <style> h1, h2, h3, h4, h5, h6, p, blockquote { margin: 0; padding: 0; } body { font-family: "Helvetica Neue", Helvetica, "Hiragino Sans GB", Arial, sans-serif; font-size: 13px; line-height: 18px; color: #737373; background-color: white; margin: 10px 13px 10px 13px; } table { margin: 10px 0 15px 0; border-collapse: collapse; } td,th { border: 1px solid #ddd; padding: 3px 10px; } th { padding: 5px 10px;
}

a { color: #0069d6; } a:hover { color: #0050a3; text-decoration: none; } a img { border: none; } p { margin-bottom: 9px; } h1, h2, h3, h4, h5, h6 { color: #404040; line-height: 36px; } h1 { margin-bottom: 18px; font-size: 30px; } h2 { font-size: 24px; } h3 { font-size: 18px; } h4 { font-size: 16px; } h5 { font-size: 14px; } h6 { font-size: 13px; } hr { margin: 0 0 19px; border: 0; border-bottom: 1px solid #ccc; } blockquote { padding: 13px 13px 21px 15px; margin-bottom: 18px; font-family:georgia,serif; font-style: italic; } blockquote:before { content:"\201C"; font-size:40px; margin-left:-10px; font-family:georgia,serif; color:#eee; } blockquote p { font-size: 14px; font-weight: 300; line-height: 18px; margin-bottom: 0; font-style: italic; } code, pre { font-family: Monaco, Andale Mono, Courier New, monospace; } code { background-color: #fee9cc; color: rgba(0, 0, 0, 0.75); padding: 1px 3px; font-size: 12px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } pre { display: block; padding: 14px; margin: 0 0 18px; line-height: 16px; font-size: 11px; border: 1px solid #d9d9d9; white-space: pre-wrap; word-wrap: break-word; } pre code { background-color: #fff; color:#737373; font-size: 11px; padding: 0; } sup { font-size: 0.83em; vertical-align: super; line-height: 0; } * { -webkit-print-color-adjust: exact; } @media screen and (min-width: 914px) { body { width: 854px; margin:10px auto; } } @media print { body,code,pre code,h1,h2,h3,h4,h5,h6 { color: black; } table, pre { page-break-inside: avoid; } } </style> import <Foundation/Foundation.h>

<body>

CategoryAndExtension(一)

做iOS开发也这么久了,对category和Extension的理解一直模棱两可,最近突然有点执着了,觉得一定要把一个东西搞清楚,看了下官方的文档ProgrammingWithObjectiveC,记下自己的理解吧。

Category

Categories Add Methods to Existing Classes

category可以在不知源码的情况 下对已经存在的class(自定义的或者系统的)添加自己的Methods.

**********************XYZPerson.h文件******************

#import <Foundation/Foundation.h>

@interface XYZPerson : NSObject

@end

**********************XYZPerson.m文件******************
#import "XYZPerson.h"

@implementation XYZPerson

@end

新建一个class,类型选择Category,Category on选择XYZPerson类,名称就随便写个Methods1,并添加个方法timeToRaiseWages,.h和.m文件如下:


#import "XYZPerson.h"

@interface XYZPerson (Methods1)

-(void)timeToRaiseWages;

@end

//category都是带有+号的
#import "XYZPerson+Methods1.h"

@implementation XYZPerson (Methods1)

-(void)timeToRaiseWages{
    NSLog(@"Boss,It‘s time to raise wages~");
}

@end

接下来在main函数中导入头文件就可以使用了。。

#import <Foundation/Foundation.h>
#import "XYZPerson.h"
#import "XYZPerson+Methods1.h"

int main(int argc, const char * argv[])
{
    @autoreleasepool {

        XYZPerson *p1 = [[XYZPerson alloc] init];

        [p1 timeToRaiseWages];

    }
    return 0;
}

Run,老板该加薪了~~~Catetory挺简单吧~接下来记下使用Category的注意事项

  • 使用category添加的方法使用之前要导入头文件,要不然会报错的。

  • 可以分散在多个文件实现一个复杂的类,就是多写几个 category,可以一人写一个methods,这样人多效率就高了。

  • category只能加方法,不能加属性和实例化变量。

  • 给系统的class添加category的时候要注意命名,最好是加上前缀,冲突了就悲剧了。

突然发觉一件事,明白一件事,然后再把讲清楚是一件很不容易的事。Markdown 写东西真的很好玩。天气很热啊,extension下次再续,扛不住了。