How do I log a url with NSlog

breakpoints, xcode

Solution

I think you mean something like:

NSLog( @"url is %@", [yourURL absoluteString]);

Problem

Currently we are trying to log a url using a breakpoint in XCODE. It's printing out the log message and the memory address. We would like to log the actual URL and not the Memory address. Question: What is the correct way to log a url in xcode using breakpoints?

Original source

Related problems