Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你怎么做呢?我正在使用 XCode 4.5.2 并尝试为在后台执行的操作制作时间戳。
虽然调用po [NSDate date]会给你当前时间,但它会涉及在目标程序中运行代码,这相当慢,所以你可能不想这样做,例如在经常被命中的断点命令中。
po [NSDate date]
如果您想在不运行代码的情况下执行此操作,诀窍是记住 lldb 的“脚本”命令使您可以访问完整的 Python 解释器。例如:
(lldb) script import time (lldb) script time.ctime() 'Thu Nov 7 12:21:22 2013'