開始之前冒充在Objective-C,必須要說明的是,冒充宣布棄用在Mac OS X10.5,它此后都不再使用了。因此,對于那些不關(guān)心這些過時的方法的同學(xué)可以跳過本章。
Objective-C的全取代另一個階級在一個程序中允許類。更換類說“構(gòu)成”目標(biāo)類。
對于支持冒充的版本,所有的消息發(fā)送到目標(biāo)類的,而不是收到通過冒充的類。
NSObject 包含 poseAsClass 方法,使我們能夠取代現(xiàn)有的的類,就像上面說。
一個類可能只對作為其直接或間接的父類之一。
冒充類絕不能定義任何新的實例變量目標(biāo)類(雖然它可能定義或重寫方法)不存在。
目標(biāo)類可能沒有收到任何消息之前冒充。
冒充類可以通過super調(diào)用覆蓋的方法,從而將的實現(xiàn)目標(biāo)類。
冒充類可以覆蓋類別中定義的方法。
#import <Foundation/Foundation.h> @interface MyString : NSString @end @implementation MyString - (NSString *)stringByReplacingOccurrencesOfString:(NSString *)target withString:(NSString *)replacement { NSLog(@"The Target string is %@",target); NSLog(@"The Replacement string is %@",replacement); } @end int main() { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; [MyString poseAsClass:[NSString class]]; NSString *string = @"Test"; [string stringByReplacingOccurrencesOfString:@"a" withString:@"c"]; [pool drain]; return 0; }
現(xiàn)在,當(dāng)我們在一個舊的Mac OS X(V_10.5或更早),編譯并運行程序,我們將得到下面的結(jié)果。
2013-09-22 21:23:46.829 Posing[372:303] The Target string is a 2013-09-22 21:23:46.830 Posing[372:303] The Replacement string is c
在上面的例子中,我們只是污染了實現(xiàn)我們的原來的方法,這將影響上述方法貫穿于所有的 NSString 操作。