首页 > 学院 > 开发设计 > 正文

runtime objc_msgSend消息发送

2019-11-06 10:05:10
字体:
来源:转载
供稿:网友

#import "ViewController.h" #import <objc/message.h> @interface ViewController ()

@end

@implementation ViewController

(void)viewDidLoad { [super viewDidLoad];

//下面两个方法等价唯一不同在于 第一个方法调用了第二个方法 //类也可以调用这个方法 类也是特殊的对象 [self run];

objc_msgSend(self,@selector(run)); }

-(void)run{

NSLog(@"跑起来");

}

@end


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表