_cmd
2017-06-12 本文已影响6人
goyohol
Apple的官方介绍:“The _cmd variable is a hidden argument passed to every method that is the current selector”
翻译:“_cmd”在Objective-C的方法中表示当前方法的selector。如同self表示当前方法调用的对象实例一样。
- (void)viewDidLoad
{
[super viewDidLoad];
NSLog(@"Current class:%@ Current method:%@",[self class],NSStringFromSelector(_cmd));
}