我有一個TextView,其中需要一些文本來更改顏色和字體。任何方法都可以使用核心文本。請幫忙。在TextView中爲文本添加顏色
-1
A
回答
3
我需要一些文字來改變顏色和字體。
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Hello. That is a test attributed string."];
[str addAttribute:NSBackgroundColorAttributeName value:[UIColor yellowColor] range:NSMakeRange(3,5)];
[str addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(10,7)];
[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"HelveticaNeue-Bold" size:20.0] range:NSMakeRange(20, 10)];
label.attributedText = str;
相關問題
- 1. 爲文本和顏色添加邊框
- 2. 爲顏色添加顏色
- 3. 在TextView中添加文本
- 4. 在TextView中爲文本設置不同的顏色Android
- 5. 爲什麼我在TextView中的文本不會改變顏色?
- 6. 如何爲C#中的Rich Textbox中的文本添加顏色?
- 7. 檢查並更改TextView文本顏色
- 8. 如何獲得textview的文本顏色?
- 9. Textview不會改變文本顏色
- 10. 文本切換器更新textview顏色
- 11. android TextView:單擊更改文本顏色
- 12. TextView和文本顏色的子類
- 13. Android TextView文本背景顏色
- 14. 根據文本更改TextView顏色
- 15. 在ggplot中爲geom_text添加顏色
- 16. 如何在TextView中添加子文本?
- 17. 在tinyMCE的上下文菜單中添加「文本顏色」
- 18. TextView的顏色爲Android
- 19. 如何TextView的文本顏色設置爲特定的主題顏色
- 20. 爲欄位添加顏色
- 21. 爲圖例添加顏色
- 22. 爲什麼setText爲textView添加文本底部的textView?
- 23. 如何在android中使用TextView連續更改文本顏色...?
- 24. 如何在選定的TextView中設置文本的顏色
- 25. 如何在Android Studio API 10中設置TextView文本顏色
- 26. 如何在TextView中更改文本的顏色
- 27. 在GTK中設置TextView的文本顏色#
- 28. 如何在TextView中設置文本的自動翻轉顏色?
- 29. 在選項卡中更改TextView的文本顏色
- 30. 如何在python中添加顏色到文本?
你想改變所有文本一些文本,對不對? – Dilip 2013-02-26 14:53:12
您應該通過搜索互聯網輕鬆找到問題的答案。 – bdesham 2013-02-26 15:00:39