ObjectiveC中打印Call Stack的若干方法

动因

虽然lldb已经内置命令可以打印当前Call stack,但还是会遇到需要通过代码获取调用栈信息的时候。

使用NSThread

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

注意

该方法在device上系统的调用栈不可见。

通过backtrace_symbols_fd

#import <execinfo.h>
#import <unistd.h>

void PrintCallStack() {
  void *stackAdresses[32];
  int stackSize = backtrace(stackAdresses, 32);
  backtrace_symbols_fd(stackAdresses, stackSize, STDOUT_FILENO);
}

通过NSException

@catch (NSException *exception)
{
    NSLog(@"%@", [exception callStackSymbols]);
}
当然也可以在UncaughtExceptionHandler中拿到NSException

NSSetUncaughtExceptionHandler(&uncaughtExceptionHandler);
void uncaughtExceptionHandler(NSException *exception)
{
    NSLog(@"reason:%@ exception nanme:%@",[exception reason], [exception name]);
    NSLog(@"call stack:%@",[exception callStackSymbols]);
}

要注意的是,如果IDE中已经添加过All exceptions Breakpoint, 那么 UncaughtExceptionHandler不再生效

通过ExceptionHandling

由于不支持iOS 不细说了
具体参考Apple developer 文档

原作写于segmentfault 链接

    原文作者:canopus4u
    原文地址: https://segmentfault.com/a/1190000003745624
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞