美文网首页
xcode常用lldb命令

xcode常用lldb命令

作者: 下班买鸡蛋 | 来源:发表于2020-05-20 16:16 被阅读0次

    1.p:打印地址 可以添加需要的代码

    2.po:打印内容

    3.call:可以调用方法

    4.thread return:直接返回,相当于代码中加return,如果需要参数,可以跟在后面

    5.frame variable:打印当前帧中的参数

    6.bt:打印当前调用栈

    7.x 地址    读取对应地址中的数据

    8.memory read 0x100545420 读取对应地址的数据

    。。。

    相关文章

      网友评论

          本文标题:xcode常用lldb命令

          本文链接:https://www.haomeiwen.com/subject/smcnohtx.html