Objective-C 快速導覽 - 延伸

沒有名稱的類目 (category) 就只是類別 (class) 的延伸擴充規格,可新增方法 (method) 與屬性 (property) ,但方法的實作需要放在原本類別的 @implementation 中。



舉例如下
#import <Foundation/Foundation.h>

@interface Demo : NSObject 

- (void) do_something;

@end

@interface Demo () 

- (void) test;

@end

@implementation Demo

- (void) do_something
{
    NSLog(@"something happened");
}

- (void) test
{
    NSLog(@"test");
}

@end

int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
 
    Demo *d = [[Demo alloc] init];
    [d do_something];
    [d test];
 
    [pool drain];
    return 0;
}

/* 《程式語言教學誌》的範例程式
   http://pydoing.blogspot.com/
   檔名:extension.m
   功能:Objective-c 程式範例
   作者:張凱慶
   時間:西元 2013 年 4 月 */



編譯執行,結果如下



中英文術語對照
類目category
類別class
方法type
屬性property


您可以繼續參考
例外處理
協定
類目


相關目錄
Objective-C 快速導覽
Objective-C 教材
首頁



參考資料
Programming with Objective-C: About Objective-C
Programming with Objective-C: Working with Objects

沒有留言: