2

我正在更改 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我跳回这条线时,插入符号的尺寸更大。插入符号包括行距,而不仅仅是字体高度。

在此处输入图像描述

跳回来后

在此处输入图像描述

进入换行符后,感觉就像我处于不同的环境中。打字时字体大小本身是相同的,但插入符号更大,当然也是选择区域。

4

0 回答 0