Created
December 27, 2010 19:34
-
-
Save hramos/756458 to your computer and use it in GitHub Desktop.
Print CGRect frame to console
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define PrintFrame(frame) NSLog(@"F X:%f Y:%f W:%f H:%f", frame.origin.x, frame.origin.y, frame.size.width, frame.size.height); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. I had no idea :)