#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
新闻热点
疑难解答