Skip to content

Instantly share code, notes, and snippets.

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.minimumLineHeight = 10.0f;
paragraphStyle.maximumLineHeight = 40.0f;
paragraphStyle.lineHeightMultiple = 2.0f;
paragraphStyle.alignment = NSTextAlignmentJustified;
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:
shadow, NSShadowAttributeName,
paragraphStyle, NSParagraphStyleAttributeName,
[UIFont fontWithName:@"Helvetica Neue" size:15.0], NSFontAttributeName,