UILabel *label = [[UILabel alloc] init]; label.font = [UIFont systemFontOfSize:17]; label.textColor = [UIColor clackColor]; label.numberOfLines = 2; label.text = @"333333333333333333333333333333"; [view addSubview:label]; NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:label.text]; NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init]; [paragraphStyle setLineSpacing:7.0f];//设置行间距 [attributedString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, label.text.length)]; label.attributedText = attributedString; CGSize size = CGSizeMake(view.frame.size.width - 50, 41); label.frame = CGRectMake(25, 25, [label sizeThatFits:size].width, [label sizeThatFits:size].height);