美文网首页
消息转发

消息转发

作者: 动感超人丶 | 来源:发表于2019-03-22 10:07 被阅读0次

.h文件

//
//  RuntimeTest.h
//  charReverse
//
//  Created by huant on 2019/3/22.
//  Copyright © 2019 huant. All rights reserved.
//

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

@interface RuntimeTest : NSObject

- (void)test:(NSString*)str;

@end

NS_ASSUME_NONNULL_END

.m文件(resolveInstanceMethod方法里,动态添加方法实现)

//
//  RuntimeTest.m
//  charReverse
//
//  Created by huant on 2019/3/22.
//  Copyright © 2019 huant. All rights reserved.
//

#import "RuntimeTest.h"
#import <objc/runtime.h>

@implementation RuntimeTest


void eat(id selfName, SEL _cmdName, NSString *param){
    NSLog(@"调用eat 参数:1%@ 参数2:%@ 参数3:%@",selfName,NSStringFromSelector(_cmdName),param);
    NSLog(@"%s", __func__);

}

+ (BOOL)resolveInstanceMethod:(SEL)sel{
    
    if (sel == @selector(test:)) {
        NSLog(@"%s", __func__);
        
        BOOL isSuccess = class_addMethod(self, sel, (IMP)eat, "v@::");

        NSLog(@" 是否添加成功:%d", isSuccess);
        return isSuccess;
    }else{
        return [super resolveInstanceMethod:sel];
    }
}


- (id)forwardingTargetForSelector:(SEL)aSelector{
    NSLog(@"%s", __func__);

    return nil;
}

- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector{
    
    if (aSelector == @selector(test:)) {
        NSLog(@"%s", __func__);

        return [NSMethodSignature signatureWithObjCTypes:"v@::"];
    }else{
        return [super methodSignatureForSelector:aSelector];
    }
}

- (void)forwardInvocation:(NSInvocation *)anInvocation{
    NSLog(@"%s", __func__);

}
@end


调用


- (void)viewDidLoad {
    [super viewDidLoad];
    
    RuntimeTest * test = [RuntimeTest new];
    [test test:@"小猫"];
}

相关文章

  • Runtime

    相关简单介绍 消息机制消息传递机制消息转发机制-动态添加方法消息转发机制-快速转发消息转发机制-慢速转发消息转发机...

  • 消息转发机制(动态消息转发)

    例子分析 1)在给程序添加消息转发功能以前,必须覆盖两个方法,即methodSignatureForSelecto...

  • Runtime 消息转发

    目录 消息转发背景知识 消息转发使用方式 消息转发常见问题 消息转发背景知识 1.消息转发的定义Objective...

  • 消息转发

    参考:https://www.jianshu.com/p/76ed71216cde

  • 消息转发

    执行一个没有实现的方法,程序会在运行时挂掉并抛出 unrecognized selector sent to … ...

  • 消息转发

    OC中的方法调用,其实都是转化成objc_msgSend函数调用 1.信息发送 2.动态方法解析 /// 对象消息解析

  • 消息转发

    1. 消息查找 Objective-C 具有很强的动态性,它将静态语言在编译和链接时期做的工作,放置到运行时来处理...

  • 消息转发

    一张图说明消息转发 例如我们进行这样一个操作:People这个类并没有实现perfectGotoSchool这个函...

  • 消息转发

  • 消息转发

    title: 消息转发date: 2017-07-06 15:32:45tags: Method resoluti...

网友评论

      本文标题:消息转发

      本文链接:https://www.haomeiwen.com/subject/ahxlvqtx.html