Skip to content

Instantly share code, notes, and snippets.

@warriorg
Created September 6, 2015 03:44
Show Gist options
  • Save warriorg/24673051e8c3d101b999 to your computer and use it in GitHub Desktop.
Save warriorg/24673051e8c3d101b999 to your computer and use it in GitHub Desktop.
UILabel UITextField调整行间距
// 设置行间距
- (void)setLineSpacing:(CGFloat)spacing label:(UILabel *)label
{
NSMutableAttributedString * attributedString = [[NSMutableAttributedString alloc] initWithString:label.text];
NSMutableParagraphStyle * paragraphStyle = [[NSMutableParagraphStyle alloc] init];
[paragraphStyle setLineSpacing:spacing];
[attributedString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [label.text length])];
[label setAttributedText:attributedString];
[label sizeToFit];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment