gpt4 book ai didi

objective-c - 如何在 NSTextView 中获取特定字体文本的字符串?

转载 作者:行者123 更新时间:2023-11-30 14:13:27 25 4
gpt4 key购买 nike

我在NSTextView中使用不同的字体,我想做的是在tableView中显示某种字体的文本字符串。

如何枚举 textView.attributedString() 并获取以 NSFont 名称作为参数的特定文本字符串?

最佳答案

我目前无法尝试运行此代码,但我相信以下内容应该对您有所帮助:

NSMutableArray *matchingStrings = [NSMutableArray new];
[attributedText enumerateAttribute:NSFontAttributeName
inRange:NSMakeRange(0,attributedText.length)
options:0
usingBlock:(void (^ nonnull)(UIFont *font,
NSRange range,
BOOL * nonnull stop)){
if ([font.fontName isEqualToString: @"AvenirNext-Bold"])
{
NSAttributedString *attributedSubstring = [attributedText attributedSubstringFromRange:range];
[matchingStrings addObject:attributedSubstring.string];
}
}];

关于objective-c - 如何在 NSTextView 中获取特定字体文本的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31498820/

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