NSProxy实现代理方法

//自定义类 继承自NSProxy,实现methodSignatureForSelector和forwardInvocation

#import

#import "MessageProtocol.h"

@interface MyProxy : NSProxy< MessageProtocol >

@property (nonatomic,weak) id   delegate;//声明代理

@end

#import "MyProxy.h"

#import

@implementation MyProxy

//1.签名验证
- (nullable NSMethodSignature *)methodSignatureForSelector:(SEL)sel
{
    if ([self.delegate respondsToSelector:sel]) {//代理实现了方法则调用代理的methodSignatureForSelector
        return  [self.delegate methodSignatureForSelector:sel];
    }else{//代理未实现方法 则调用NSObject的methodSignatureForSelector
        const char * excute = [@"nbllExcute" UTF8String];
        return [NSMethodSignature signatureWithObjCTypes:"v@:"];//v@: 很重要 原因未知 一改便报错
    }
}

//2.消息派发
- (void)forwardInvocation:(NSInvocation *)invocation
{
    SEL userFun = [invocation selector];
    if ([self.delegate respondsToSelector:userFun]) {//代理实现了方法则调用代理的方法
        [invocation setTarget:self.delegate];
        [invocation invoke];
    }
    else//代理未实现方法,调用自己的错误处理方法
    {
        invocation.selector = NSSelectorFromString(@"nbllExcute");
        [invocation setTarget:self];
        [invocation invoke];
    }

}

//错误处理方法
-(void)nullExcute
{
    NSLog(@"不存在的方法,调用这里");
}
@end

//定义头文件  声明所有协议方法

#import

@protocol MessageProtocol

@optional
-(void)printHello;//示例方法1

-(void)noexistFun;//示例方法2

@end

//调用

  testExcute *excute = [[testExcute alloc]init];//为自定义的继承自NSObject的类 可以实现方法1和方法2
    MyProxy *proxy = [MyProxy alloc];
    proxy.delegate = excute;
    [proxy printHello];//未定义也可以调用
    [proxy noexistFun];//未定义也可以调用

你可能感兴趣的:(oc)