gpt4 book ai didi

ios - 如何在 Textview 中点击时更改文本的颜色

转载 作者:行者123 更新时间:2023-11-29 02:44:42 28 4
gpt4 key购买 nike

我需要在 UITextView 中点击更改文本颜色。我在 TextView 的选定文本上得到了 NSRange,但无法使用此代码更改其颜色。

[mutableAttributedString addAttribute:NSForegroundColorAttributeName value:[UIColor colorWithRed:10.0/255.0 green:15.0/255.0 blue:5.0/255.0 alpha:1.0] range:range1];

有什么方法可以改变 TextView 中的点击颜色变化吗?

最佳答案

我希望,这段代码可以帮到你 :)在我的场景中,我通过点击 uiButton 更改选定的 textColor,您可以尝试这种方式。

// When text is tapped or selected by user we can change the

- (IBAction)applyBlueColor:(id)sender {

// getting textRange
NSRange textRange = [_textView selectedRange];

NSDictionary *attributeDictionary = [_textView.textStorage attributesAtIndex:textRange.location
effectiveRange:nil];

if ([attributeDictionary objectForKey:NSForegroundColorAttributeName] == nil ||
[attributeDictionary objectForKey:NSForegroundColorAttributeName] != [UIColor blackColor]) {
// Setting blue color to my selected text.
NSDictionary *colorDictionary = @{NSForegroundColorAttributeName: [UIColor blueColor]};
[_textView.textStorage beginEditing];
[_textView.textStorage setAttributes:colorDictionary range:textRange];
[_textView.textStorage endEditing];
}

}

关于ios - 如何在 Textview 中点击时更改文本的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25287159/

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