在iOS7中有两种方法: 1. 通过设置attributedString来设置。 NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];paragraphStyle.headIndent = 15; // <--- indention if you need itparagraphStyle.firstLineHeadIndent = 15;paragraphStyle.lineSpacing = 7; // <--- magic line spacing here!NSDictionary *attrsDictionary =@{ NSFontAttributeName: font, <-- if you need; & there are many more attrs NSParagraphStyleAttributeName: paragraphStyle};self.textView.attributedText = [[NSAttributedString alloc] initWithString:@"Hello World over many lines!&qu