我试图实现消息转发。Xcode 5,ARC 开启,新的默认 iPhone 项目。 我在这里阅读了文档
我的项目中有两个自定义类:Hello
和World
.
#import <Foundation/Foundation.h>
@interface Hello : NSObject
- (void) say;
@end
#import "Hello.h"
#import "World.h"
@implementation Hello
- (void) say {
NSLog(@"hello!");
}
-(void)forwardInvocation:(NSInvocation *)invocation {
NSLog(@"forward invocation");
World *w = [[World alloc] init];
if ([w respondsToSelector:[invocation selector]]) {
[invocation invokeWithTarget:w];
} else {
[self doesNotRecognizeSelector: [invocation selector]];
}
}
-(NSMethodSignature*)methodSignatureForSelector:(SEL)selector {
NSLog(@"method signature");
NSMethodSignature *signature = [super methodSignatureForSelector:selector];
if (! signature) {
World *w = [[World alloc] init];
signature = [w methodSignatureForSelector:selector];
}
return signature;
}
@end
世界很简单:
#import <Foundation/Foundation.h>
@interface World : NSObject
- (void) spin;
@end
#import "World.h"
@implementation World
- (void) spin {
NSLog(@"spin around");
}
@end
在我的 AppDelegate 中,我写了三行简单的代码:
Hello *me = [[Hello alloc] init];
[me say];
[me spin];
编译器给我一个错误:AppDelegate.m:23:9: No visible @interface for 'Hello' declares the selector 'spin'
并且不构建项目。当我重新输入它时:[me performSelector:@selector(spin)];
- 它工作正常。
代码[me spin]
仅在 ARC 为 OFF 时工作(但编译器会生成警告AppDelegate.m:23:9: 'Hello' may not respond to 'spin'
)。
我的问题:为什么?以及如何将 ARC 与消息转发一起使用?