標籤:
Category的實際作用就是為已有的類來添加方法。為現有的類添加的方法可以先不用實現,在需要的時候再實現也是可以的。在我們的實際代碼中如何來實現Category的呢?我們上篇的Person 類為例。
///////////////// .h ////////////////#import <Foundation/Foundation.h> @interface Person : NSObject @property (nonatomic,copy)NSString *name;@property (nonatomic,assign)int age;@property (nonatomic,assign)NSString *sex; - (void)printInfo;@end ///////////////// .m ////////////////#import "Person.h" @implementation Person@synthesize name = _name,sex = _sex;@synthesize age = _age; - (void)printInfo { NSLog(@"我的名字叫:%@ 今年%d歲 我是一名%@ %@",self.name,self.age,self.sex,NSStringFromClass([self class]));}@end
現在現有的Person 類中並沒有driving的方法,那我們就來為它添加driving,我們建立一個.h和.m檔案,名稱叫做Person+Driving(類名+方法名),這樣命名有一個好處,就是一眼便知道為哪一個類添加了什麼方法。
/////////////////// .h ////////////////////// #import <Foundation/Foundation.h>#import "Person.h"@interface Person(Person_Driving)- (void)driving;@end/////////////////// .m ////////////////////// #import "Person+Driving.h"@implementation Person(Person_Driving)- (void)driving { NSLog(@"昨晚特斯拉沒充電,今天開的是寶馬X6");}@end
我們現在來看下測AppDelegate中添加測試。
#import "AppDelegate.h"#import "Teacher.h"#import "Student.h"#import "Person.h"#import "Cleaner.h"#import "Person+Driving.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { Person *p = [[Person alloc] init]; p.name = @"隔壁老王"; p.age = 36; p.sex = @"男"; [p printInfo]; [p driving]; return YES;}@end
測試結果:
2015-06-07 22:34:22.247 Attendance[15791:2195987] 我的名字叫:隔壁老王今年36歲我是一名男 Person
2015-06-07 22:34:22.248 Attendance[15791:2195987] 昨晚特斯拉沒充電,今天開的是寶馬X6
本站文章為 寶寶巴士 SD.Team 原創,轉載務必在明顯處註明:(作者官方網站: 寶寶巴士 )
轉載自【寶寶巴士SuperDo團隊】 原文連結: http://www.cnblogs.com/superdo/p/4559609.html
[Objective-C] 005_ Category(類別)