NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init];
style.lineSpacing = 17;
textView.attributedText = [[NSAttributedString alloc]
initWithString:@"Predefined Text"
attributes:@{NSParagraphStyleAttributeName : style}];
textView.text = @"Your text"
No comments:
Post a Comment