如何设置NSTextView
中的行高或行距(即每行有多高,或每行之间有多大空间)?
最佳答案
在nstextview中使用- (void)setDefaultParagraphStyle:(NSParagraphStyle *)paragraphStyle
方法。
NSParagraphStyle的文档
NSMutableParagraphStyle的文档
nsmutableparagraphstyle中有一个setLineSpacing:
方法。还有一些与行高相关的方法,nsmutableparagraphstyle文档中“设置其他样式信息”下的方法应该很有用。
我想这就是你要找的。