我正在更改 NSAttributedString - NSTextView 的属性
- (void)textStorageDidProcessEditing:(NSNotification *)notification {
NSMutableParagraphStyle * myParagraphStyle = [[NSMutableParagraphStyle alloc] init];
myParagraphStyle.lineSpacing = 10;
NSRange range = NSMakeRange(0,self.string.length);
[[self textStorage] addAttribute:NSParagraphStyleAttributeName
value:myParagraphStyle
range:range];
}
当- (void)insertNewline:(id)sender
我跳回这条线时,插入符号的尺寸更大。插入符号包括行距,而不仅仅是字体高度。
跳回来后
进入换行符后,感觉就像我处于不同的环境中。打字时字体大小本身是相同的,但插入符号更大,当然也是选择区域。