Skip to content

Instantly share code, notes, and snippets.

@baz
Created December 10, 2012 01:20
Show Gist options
  • Save baz/4247847 to your computer and use it in GitHub Desktop.
Save baz/4247847 to your computer and use it in GitHub Desktop.
NSView subview layout
@interface NSView (Layout)
- (void)setNeedsSubviewLayout;
@end
@implementation NSView (Layout)
- (void)setNeedsSubviewLayout {
[self resizeSubviewsWithOldSize:self.frame.size];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment