1
我嘗試在我的UITextView中添加具有不同顏色的字符串。我寫了這段代碼UITextView中的不同顏色
NSMutableAttributedString* attString =
[[NSMutableAttributedString alloc]initWithString:view.text]; //view is my UITextView
[attString addAttribute:(NSString*)kCTForegroundColorAttributeName
value:[UIColor greenColor]
range:(NSRange){attString.length-8, 8}];
view.attributedText = attString;
也許這是不正確的屬性,你能告訴我什麼屬性改變了文本的顏色嗎?
謝謝,它的幫助我 – Neznajka 2013-02-12 00:37:25