gpt4 book ai didi

ios - 在 NSTextStorage NSMutableAttributedString 末尾设置新字体

转载 作者:行者123 更新时间:2023-11-28 19:06:38 32 4
gpt4 key购买 nike

我正在编写一个使用 UITextView 处理富文本编辑的应用程序。它使用 NSTextStorage 为部分字符串设置新属性。然而,如果用户想要在字符串末尾或字符串中间更改字体或字体大小(换句话说,当范围传递给 setAttributes:range 时: 的长度为 0)这无法完成,因为您不能设置范围为 0 的属性。所以基本上,我如何为 UITextView 中的光标位置设置新的 UIFont?

我的 NSTextStorage 子类中的相关代码:

- (void)setAttributes:(NSDictionary *)attrs range:(NSRange)range
{
NSLog(@"setAttributes:%@ range:%@", attrs, NSStringFromRange(range));

[self beginEditing];
[_backingStore setAttributes:attrs range:range];

[_backingStore fixAttributesInRange:range];

[self edited:NSTextStorageEditedAttributes range:range changeInLength:0];
[self endEditing];
}

最佳答案

正确的方法是设置 UITextViewtypingAttributes 属性。

关于ios - 在 NSTextStorage NSMutableAttributedString 末尾设置新字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19939828/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com