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 中的断点记录 url。它正在打印日志消息和内存地址。我们想记录实际的 URL 而不是内存地址。
问题:使用断点在 xcode 中记录 url 的正确方法是什么?
我认为你的意思是:
NSLog( @"url is %@", [yourURL absoluteString]);