Skip to content

Instantly share code, notes, and snippets.

@dopcn
Created March 16, 2015 10:14
Show Gist options
  • Save dopcn/d62262b6ceec1dc783cd to your computer and use it in GitHub Desktop.
Save dopcn/d62262b6ceec1dc783cd to your computer and use it in GitHub Desktop.
NSLineBreakByWordWrapping
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle defaultParagraphStyle] mutableCopy];
paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;
paragraphStyle.alignment = NSTextAlignmentCenter;
[str drawInRect:rect withAttributes: @{NSFontAttributeName: f1,
NSParagraphStyleAttributeName: paragraphStyle }];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment