Skip to content

Instantly share code, notes, and snippets.

@mundstein
Created February 12, 2012 11:17
Show Gist options
  • Save mundstein/1808033 to your computer and use it in GitHub Desktop.
Save mundstein/1808033 to your computer and use it in GitHub Desktop.
Log the frame changes of a custom view
// override this method to get a great log output
// to show how the view is resized when rotating,
// calling sizeToFit and other methods that affect the frame
- (void) setFrame:(CGRect)frame {
[super setFrame:frame];
NSLog(@"%@ - %@", NSStringFromSelector(_cmd), NSStringFromCGRect(frame));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment