gpt4 book ai didi

ios - 在 Xcode 日志旁边显示行号

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:27:31 24 4
gpt4 key购买 nike

如何配置 Xcode 以显示导致打印日志的行号?

我在我的调试器中看到了日志,但我不确定它们来自哪里。

最佳答案

您可以使用内置宏:__PRETTY_FUNCTION____LINE____FILE__ 等。

objective-c 示例:

#define NSLog(__FORMAT__, ...) NSLog((@"%s [Line %d] " __FORMAT__), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)

swift :

println("assertion failed at \(__FILE__):\(__LINE__)")

gcc 宏: https://gcc.gnu.org/onlinedocs/cpp/Standard-Predefined-Macros.html

快速示例:https://developer.apple.com/swift/blog/?id=15

关于ios - 在 Xcode 日志旁边显示行号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40349535/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com