I want to use the capabilities of Xcodes to log certain data. It should actually be pretty easy to achieve something similar to
NSLog(@"Size: %@", NSStringFromRect(self.view.frame));
with action Log Message breakpoints. I tried options for this:
Size: @NSStringFromRect([[self view] frame])@
but failed.
I was already looking for Xcode documentation and was surprised at how poorly this feature is documented. The only bit of information that I could find was how to adjust when playing sound when reaching breakpoints.
source share