Objective-C教學
Objective-C 教學首頁
Objective-C 語言概述
Objective-C 開發環境(安裝配置)
Objective-C語言程序結構
Objective-C 基本語法
Objective-C 數據類型
Objective-C 變量
Objective-C 常量
Objective-C 運算符
Objective-C 算術運算符
Objective-C 關係運算符
Objective-C 邏輯運算符
Objective-C 位運算符
Objective-C 賦值運算符
Objective-C 循環
Objective-C while循環
Objective-C for循環
Objective-C do...while循環
Objective-C 嵌套循環
Objective-C break語句
Objective-C continue語句
Objective-C 決策
Objective-C if語句
Objective-C if...else 語句
Objective-C 嵌套 if 語句
Objective-C switch語句
Objective-C 嵌套switch語句
Objective-C 函數
Objective-C 函數按值調用
Objective-C 函數引用調用
Objective-C 塊
Objective-C Numbers/數字
Objective-C Arrays/數組
Objective-C 多維數組
Objective-C 數組作爲函數參數傳遞
Objective-C 從函數返回數組
Objective-C 指針的數組
Objective-C 指針
Objective-C 指針運算
Objective-C 數組的指針
Objective-C 指向指針的指針
Objective-C 傳遞函數的指針
Objective-C 函數返回指針
Objective-C NSString/字符串
Objective-C struct/結構
Objective-C 預處理器
Objective-C typedef
Objective-C 類型轉換
Objective-C 日誌處理
Objective-C 錯誤處理
命令行參數
Objective-C 類&對象
Objective-C 繼承
Objective-C 多態性
Objective-C 數據封裝
Objective-C Categories/類別
Objective-C Posing/冒充
Objective-C 擴展
Objective-C Protocols/協議
Objective-C 動態綁定
Objective-C 複合對象
Obj-C Foundation/基礎框架
Objective-C 數據存儲
Objective C 文本和字符串
Objective-C 日期和時間
Objective-C 異常處理
Objective-C 文件處理
Objective-C URL加載系統
Objective-C 快速枚舉
Objective-C 內存管理

Objective-C 複合對象

我們可以創建子類簇內嵌入對象定義了一個類。這些類對象是複合對象。

所以,你可能會想知道什麼是類簇。所以我們會先看看什麼是類簇。

類簇

類簇是Foundation框架的設計模式,使用了大量的。類簇羣的一些私有的具體子類下一個公共的抽象父類。在這樣的類分組,簡化公開可見的一個面向對象的框架結構,而不降低其功能豐富。類集羣的基礎上抽象工廠設計模式。

爲了簡單,而不是創建多個類似函數的類,我們創建了一個類,其處理的基礎上處理輸入的值。

例如,在 NSNumber有許多簇類,如字符型,整型,布爾等。我們組合所有這些到一個單一的,負責處理類似的操作在一個類中的類。NSNumber 實際上這些原始類型到對象封裝的值。

那麼什麼是完全相同複合對象?

私有集羣對象嵌入在我們自己設計的對象,我們創建一個複合對象。這種複合對象可以依靠其基本功能的羣集對象,只攔截消息,希望在某些特定的方式處理複合對象。這種結構減少了我們必須編寫的代碼量,可利用基礎框架所提供的測試代碼。

下圖對此進行了解釋。

Objective-C

複合對象必須聲明自己是一個集羣的抽象父類的子類。作爲一個子類,它必須覆蓋父類的原始方法。它也可以重寫派生的方法,但這不是必需的,因爲派生的方法通過原語工作。

NSArray類的計數方法是一個例子,它覆蓋的方法可以干預對象的實現也很簡單,如:

- (unsigned)count { return [embeddedObject count]; }

在上面的例子中,嵌入的對象實際上是類型的NSArray。

一個複合對象的例子

現在,爲了看到一個完整的例子,讓我們來看看下面給出的例子來自蘋果的文檔。

#import <Foundation/Foundation.h> @interface ValidatingArray : NSMutableArray { NSMutableArray *embeddedArray; } + validatingArray; - init; - (unsigned)count; - objectAtIndex:(unsigned)index; - (void)addObject:object; - (void)replaceObjectAtIndex:(unsigned)index withObject:object; - (void)removeLastObject; - (void)insertObject:object atIndex:(unsigned)index; - (void)removeObjectAtIndex:(unsigned)index; @end @implementation ValidatingArray - init { self = [super init]; if (self) { embeddedArray = [[NSMutableArray allocWithZone:[self zone]] init]; } return self; } + validatingArray { return [[self alloc] init] ; } - (unsigned)count { return [embeddedArray count]; } - objectAtIndex:(unsigned)index { return [embeddedArray objectAtIndex:index]; } - (void)addObject:(id)object { if (object != nil) { [embeddedArray addObject:object]; } } - (void)replaceObjectAtIndex:(unsigned)index withObject:(id)object; { if (index <[embeddedArray count] && object != nil) { [embeddedArray replaceObjectAtIndex:index withObject:object]; } } - (void)removeLastObject; { if ([embeddedArray count] > 0) { [embeddedArray removeLastObject]; } } - (void)insertObject:(id)object atIndex:(unsigned)index; { if (object != nil) { [embeddedArray insertObject:object atIndex:index]; } } - (void)removeObjectAtIndex:(unsigned)index; { if (index <[embeddedArray count]) { [embeddedArray removeObjectAtIndex:index]; } } @end int main() { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; ValidatingArray *validatingArray = [ValidatingArray validatingArray]; [validatingArray addObject:@"Object1"]; [validatingArray addObject:@"Object2"]; [validatingArray addObject:[NSNull null]]; [validatingArray removeObjectAtIndex:2]; NSString *aString = [validatingArray objectAtIndex:1]; NSLog(@"The value at Index 1 is %@",aString); [pool drain]; return 0; }

現在,當我們編譯並運行程序,我們會得到以下的結果。

2013-09-28 22:03:54.294 demo[6247] The value at Index 1 is Object2

在上面的例子中,我們可以看到驗證數組的一個函數,也不允許添加空對象,這將導致在正常的情況下崩潰。但是,我們的驗證數組需要處理好它。類似地,每個驗證數組中的方法以及驗證過程從正常的操作順序分開。