首页 > 网站 > 建站经验 > 正文

让i OS调试信息清晰化

2019-11-02 14:49:54
字体:
来源:转载
供稿:网友

 Objective-C和C语言一样,提供了一些标准宏,描述了当前文件,所在源码文件的行数,以及函数信息。而Objective-C本身,也提供了相关的类类型。都可以应用在调试和错误处理日志当中。

预处理器在C/C++/Objective-C语言中提供的宏

* __func__%s 当前函数签名
* __LINE__%d 在源代码文件中当前所在行数

* __FILE__ %s 当前源代码文件全路径

* __PRETTY_FUNCTION__ %s 像__func__,但是包含了C++代码中的隐形类型信息。

在Objective-C使用的一些日志信息

* NSStringFromSelector(_cmd) %@ 当前selector名称
 * NSStringFromClass([selfclass]) %@ 当前对象名
 * [[NSString stringWithUTF8String:**FILE**] lastPathComponent] %@ 源代码文件名
 * [NSThreadcallStackSymbols] %@ 当前stack的可读字符串数组。仅在调度时使用。

**例子代码:**

• #import <foundation /Foundation.h>

• @interface TestObj : NSObject

• - (void) fun:(NSString *)input;

• @end

&bull

琪琪布电影网[www.aikan.tv/special/qiqibudianyingwang/]
; @implementation TestObj

• - (void) fun:(NSString *)input {

NSLog(@"%s:%d:%s:%s", __func__, __LINE__, __FILE__,__PRETTY_FUNCTION__);

NSLog(@"%@",NSStringFromSelector(_cmd));

NSLog(@"%@",NSStringFromClass([self class]));

NSLog(@"%@",[[NSString stringWithUTF8String:__FILE__] lastPathComponent]);

NSLog(@"%@",[NSThread callStackSymbols]);

NSLog(@"%@",input);}

@end

int main (int argc, const char * argv[]){

@autoreleasepool {

TestObj *to = [[TestObj alloc]init];

[to fun:@"call"];

[to release];

}

return 0;

}

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