gpt4 book ai didi

iPhone RestKit 如何启用 RKLogDebug?

转载 作者:IT王子 更新时间:2023-10-29 07:46:22 26 4
gpt4 key购买 nike

我正在尝试调试 RestKit 对象映射,并注意到在整个代码中都有对 RKLogDebug 的调用,但似乎该宏在某处未定义。如何启用它?

最佳答案

你想添加这样的东西:

    RKLogConfigureByName("RestKit", RKLogLevelWarning); 
RKLogConfigureByName("RestKit/ObjectMapping", RKLogLevelTrace);
RKLogConfigureByName("RestKit/Network", RKLogLevelTrace);

到您的代码。请参阅 RKLog.h 了解各种级别。这是个绝招。

注意这在末尾支持通配符,例如,

    RKLogConfigureByName("*", RKLogLevelTrace); // set all logs to trace,
RKLogConfigureByName("RestKit*", RKLogLevelWarning); // set all RestKit logs to warning (leaving the app-specific log untouched).

——谢谢凯文!

对于 Swift 用户使用这个句法:

    RKlcl_configure_by_name("RestKit/Network", RKlcl_vTrace.rawValue)  
RKlcl_configure_by_na`enter code here`me("RestKit/ObjectMapping", RKlcl_vOff.rawValue)

– 谢谢 Darshit!

关于iPhone RestKit 如何启用 RKLogDebug?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10336259/

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