如何查看RestKit网络的通信(JSON字符串)?
我希望看到 iPhone 的 JSON 输入/输出。我怎样才能做到这一点?
我需要设置 use NSLog()
(以及在哪里)?或者,设置 RestKit 日志记录级别(设置为什么)?
I wish to see the JSON input/output of the iPhone. How can I do that?
Do I need to set use NSLog()
(and where)? Or, set the RestKit logging level (to what)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将此
RKLogConfigureByName("RestKit/Network", RKLogLevelTrace); 放置在您的 AppDelegate 中
Try placing this
RKLogConfigureByName("RestKit/Network", RKLogLevelTrace);
in your AppDelegate您可以使用 Charles - 调试代理
You can use Charles - Debugging Proxy