Category 类别 -Objective-C

http://blog.csdn.net/iukey/article/details/7341340

category 是Objective-C 里面最常用到的功能之一。category 可以为已经存在的类增加方法,而不需要增加一个子类。而且,我们可以在不知道某个类内部实现的情况下,为该类增加方法。如果我们想增加某个框架(framework)中的类的方法,category 就非常有效。比如,如果想在NSString 上增加一个方法来判断它是否是有效的 URL,那么就可以这样做:

  1. @interface NSString (extension)  
  2. - (BOOL) isURL;  
  3. @end  
是不是觉得与类的定义非常像,确实,就是category 没有父类,而且后面要跟括号里面写category 的名字,名字可以随便取。下面是刚刚 isURL 的实现:
  1. @implementation NSString(extension)  
  2. - (BOOL) isURL{  
  3.        if( [self hasPrefix:@"http://"] )  
  4.            return YES;  
  5.        else  
  6.            return NO;  
  7. }  
  8. @end  
现在就可以在任何NSString类对象上调用这个方法了。下面是一个调用的例子:
  1. NSString* str1 = @"http://www.blog.csdn.net/iukey";  
  2. NSString* str2 = @"刘伟Lewis";  
  3. if([str1 isURL])  
  4.    NSLog(@"str1 is a URL");  
  5. if([str2 isURL])  
  6.    NSLog(@"str2 is a URL");  

通过上面的例子可以看出,通过类别所添加的新方法就成为类的一部分。我们通过为类别所添加的方法也存在于他的方法列表中,而为NSstring 子类添加的新方法,NSString是不具有的。通过类别所添加的新方法可以向这个类的其他方法一样完成任何操作。在运行时,新添加的方法和已经存在的方法在使用上没有任何区别。通过类别添加的方法和别的方法一样会被他的子类所继承。

类别接口的的定义看起来很像类接口的定义,而不同的是类别名用圆括号列出,他们位于类名后面。类别必须导入他所扩展的类的接口文件。标准语发格式如下:

  1. #import "类名.h"  
  2. @interface 类名(类别名)  
  3. //新方法的声明  
  4. @end  

和类一样类别的实现文件也要导入它的接口文件。一个常用的命名约定是,类别的基本文件名是这个类别扩展的类的名字后面跟类别名。因此一个名字为 “类名”+“类别名”+“.m”的实现文件看起来就是这样:

  1. #import "类名类别名.h"  
  2. @interface 类名(类别名)  
  3. //新的实现方法   
  4. @end  
注意:类别并不能为类声明新的实例变量,他只包含方法。然而在类作用域内所有实例变量,都能被这些类别访问。他们包括为类声明的所有的实例变量,甚至那些被@private 修饰的变量。可以为一个类添加多个类别,但每个类别名必须不同,而且每个类别都必须声明并实现一套不同的方法。

要记住,我们通过 category 来修改一个类的时候,他对应应用程序里这个类所有对象都起作用。跟子类不一样,category 不能增加成员变量。我们还可以用 category里重写类原先存在的方法(但是并不推荐这么做)。最后给出一个完整在例子(这个例子是扩展UIImage类 为其添加一个把图像变为灰度图像的方法):

  1. //  GrayScale.h  
  2. //  XOGameFrame  
  3. //  
  4. //  Created by song on 11-1-12.  
  5. //  Copyright 2011 __MyCompanyName__. All rights reserved.  
  6. //  
  7.   
  8. #import <Foundation/Foundation.h>  
  9.   
  10.   
  11. @interface UIImage (grayscale)  
  12.   
  13. - (UIImage *)convertToGrayscale ;  
  14.   
  15. @end  

  1. //  
  2. //  GrayScale.m  
  3. //  XOGameFrame  
  4. //  
  5. //  Created by song on 11-1-12.  
  6. //  Copyright 2011 __MyCompanyName__. All rights reserved.  
  7. //  
  8.   
  9. #import "GrayScale.h"  
  10.   
  11. @implementation UIImage (grayscale)  
  12.   
  13. typedef enum {  
  14.     ALPHA = 0,  
  15.     BLUE = 1,  
  16.     GREEN = 2,  
  17.     RED = 3  
  18. } PIXELS;  
  19.   
  20. - (UIImage *)convertToGrayscale {  
  21.     CGSize size = [self size];  
  22.     int width = size.width;  
  23.     int height = size.height;  
  24.       
  25.     // the pixels will be painted to this array  
  26.     uint32_t *pixels = (uint32_t *) malloc(width * height * sizeof(uint32_t));  
  27.       
  28.     // clear the pixels so any transparency is preserved  
  29.     memset(pixels, 0, width * height * sizeof(uint32_t));  
  30.       
  31.     CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();  
  32.       
  33.     // create a context with RGBA pixels  
  34.     CGContextRef context = CGBitmapContextCreate(pixels, width, height, 8, width * sizeof(uint32_t), colorSpace,   
  35.                                                  kCGBitmapByteOrder32Little | kCGImageAlphaPremultipliedLast);  
  36.       
  37.     // paint the bitmap to our context which will fill in the pixels array  
  38.     CGContextDrawImage(context, CGRectMake(00, width, height), [self CGImage]);  
  39.       
  40.     for(int y = 0; y < height; y++) {  
  41.         for(int x = 0; x < width; x++) {  
  42.             uint8_t *rgbaPixel = (uint8_t *) &pixels[y * width + x];  
  43.               
  44.             // convert to grayscale using recommended method: http://en.wikipedia.org/wiki/Grayscale#Converting_color_to_grayscale  
  45.             uint32_t gray = 0.3 * rgbaPixel[RED] + 0.59 * rgbaPixel[GREEN] + 0.11 * rgbaPixel[BLUE];  
  46.               
  47.             // set the pixels to gray  
  48.             rgbaPixel[RED] = gray;  
  49.             rgbaPixel[GREEN] = gray;  
  50.             rgbaPixel[BLUE] = gray;  
  51.         }  
  52.     }  
  53.       
  54.     // create a new CGImageRef from our context with the modified pixels  
  55.     CGImageRef image = CGBitmapContextCreateImage(context);  
  56.       
  57.     // we're done with the context, color space, and pixels  
  58.     CGContextRelease(context);  
  59.     CGColorSpaceRelease(colorSpace);  
  60.     free(pixels);  
  61.       
  62.     // make a new UIImage to return  
  63.     UIImage *resultUIImage = [UIImage imageWithCGImage:image];  
  64.       
  65.     // we're done with image now too  
  66.     CGImageRelease(image);  
  67.       
  68.     return resultUIImage;  
  69. }  
  70.   
  71. @end 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值