gpt4 book ai didi

ios - 更改属性 TextView 中一个单词的颜色( objective-c )

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:56:58 25 4
gpt4 key购买 nike

我有一个带有属性文本的 TextView 。我正在尝试将属性文本的前 14 个字母(“隐私政策”)的颜色更改为存储值“appTintColor”。此应用色调存储在 p 列表中,每个应用目标都有不同的颜色。

如何将 textView 属性文本的前 5 个字母更改为这个变量“appTintColor”?我知道我可以使用 xCode 界面轻松地将颜色更改为 RGB/HEX 颜色...但我想将此颜色更改为变量“appTintColor”,该变量基于应用目标是动态的。

我是否向文本字段添加一个 socket ,为前 14 个字符添加下标,并将其设置为 appTintColor?这就是我的逻辑,但我似乎无法在代码中得到它。

enter image description here

最佳答案

你需要一个 NSMutableAttributedString - 试试下面的代码:

UIColor *color = [UIColor greenColor];

NSString *privacyPolicyFullStr = @"Privacy policy\n blah stuff things blah cat bat mongoose platypus";

NSMutableAttributedString *mutAttrStr = [[NSMutableAttributedString alloc]initWithString:privacyPolicyFullStr attributes:nil];

NSString *privacyPolicyShortStr = @"Privacy Policy"; //just to avoid using a magic number
NSDictionary *attributes = @{NSForegroundColorAttributeName:color};
[mutAttrStr setAttributes:attributes range:NSMakeRange(0, privacyPolicyShortStr.length)];

self.textView.attributedText = mutAttrStr;

关于ios - 更改属性 TextView 中一个单词的颜色( objective-c ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33270761/

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