ios textview 行间距设置
时间: 2023-08-13 09:03:23 浏览: 309
要设置 `UITextView` 的行间距,你可以通过以下方式来实现:
1. 创建一个 `NSMutableParagraphStyle` 对象。
2. 设置 `NSMutableParagraphStyle` 对象的 `lineSpacing` 属性为你想要的行间距值。
3. 将 `NSMutableParagraphStyle` 对象赋值给 `UITextView` 的 `typingAttributes` 属性。
代码示例:
```
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.lineSpacing = 10; // 设置行间距值
UITextView *textView = [[UITextView alloc] init];
textView.typingAttributes = @{NSParagraphStyleAttributeName: paragraphStyle};
```
这样,你的 `UITextView` 就会按照你设置的行间距来显示文本了。
阅读全文