Skip to content

Instantly share code, notes, and snippets.

@mattyohe
Created January 8, 2014 16:34
Show Gist options
  • Save mattyohe/8319719 to your computer and use it in GitHub Desktop.
Save mattyohe/8319719 to your computer and use it in GitHub Desktop.
UILabel that sizes in portrait and landscape
@implementation MYLabel
- (void)layoutSubviews
{
self.preferredMaxLayoutWidth = self.frame.size.width;
[super layoutSubviews];
}
@end
@mattyohe
Copy link
Author

mattyohe commented Jan 8, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment