在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
有程序的地方就有bug,有bug的地方就需要debug。对于程序员来说,coding的过程便是制造bug和解决bug。Objective定义了不少表达式来协助debug的流程,将这些表达式用在NSLog中,可以简化部分工作,快速定义到debug的部分。 比如以下代码: 1 -(id) initWithPlayer:(VVPlayer *)aPlayer seatsNum:(int)seatsNum 2 { 3 if (self = [super init]) 4 { 5 NSLog(@”\n Function: %s\n Pretty function: %s\n Line: %d\n File: %s\n Object: %@”,__func__, __PRETTY_FUNCTION__, __LINE__, __FILE__, aPlayer); 6 } 7 … 8 } 输出结果为:
另外有一些Core Foundation的方法可以从CFString的层级拿到一些有用的字符串,包括且不限于selector,class,protocol等,参考下面的代码: 1 -(id) initWithPlayer:(VVPlayer *)aPlayer seatsNum:(int)seatsNum 2 { 3 if (self = [super init]) 4 { 5 NSLog(@”Current selector: %@”, NSStringFromSelector(_cmd)); 6 NSLog(@”Object class: %@”, NSStringFromClass([self class])); 7 NSLog(@”Filename: %@”, [[NSString stringWithUTF8String:__FILE__] lastPathComponent]); 8 } 9 … 10 } 输出结果为: |
请发表评论