Objective-C 摆姿势


在开始介绍Objective-C 中的姿势之前,我想提醒您注意,姿势在 Mac OS X 10.5 中已被宣布弃用,此后将无法使用。因此,对于那些不关心这些已弃用的方法的人可以跳过本章。

Objective-C 允许一个类完全替换程序中的另一个类。替换类被称为“冒充”目标类。对于支持姿势的版本,所有发送到目标类的消息都由姿势类接收。

NSObject 包含poseAsClass - 方法,使我们能够替换现有的类,如上所述。

摆姿势的限制

  • 一个类只能充当其直接或间接超类之一。

  • 构成类不得定义目标类中不存在的任何新实例变量(尽管它可以定义或覆盖方法)。

  • 目标班级在摆姿势之前可能没有收到任何消息。

  • 伪装类可以通过 super 调用重写的方法,从而合并目标类的实现。

  • 摆姿势类可以覆盖类别中定义的方法。

#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;
}

现在,当我们在较旧的 Mac OS X(V_10.5 或更早版本)中编译并运行该程序时,我们将得到以下结果。

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

在上面的例子中,我们只是用我们的实现污染了原始方法,这将在使用上述方法的所有 NSString 操作中受到影响。