美文网首页
消息机制

消息机制

作者: 尛烁 | 来源:发表于2021-06-24 17:29 被阅读0次

    // 使用运行时的第一步:导入<objc/message.h>

    // 第二步:Build Setting -> 搜索msg -> 设置属性为No

    // SEL:方法编号,根据方法编号就可以找到对应方法实现

     [p performSelector:@selector(eat)];

    //发送消息

        objc_msgSend(p, @selector(eat));

        objc_msgSend(p, @selector(run:),10);//方法传值

        // 类名调用类方法,本质类名转换成类对象

        [Person eat];//调用+方法

        // 获取类对象

        ClasspersonClass = [Personclass];

        [personClassperformSelector:@selector(eat)];//调用+方法

        // 运行时

        objc_msgSend(personClass,@selector(eat));//调用+方法

    Runtime(消息机制)Demo

    相关文章

      网友评论

          本文标题:消息机制

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