重複の可能性:
TTT属性のラベルマルチカラーフォントヘルプ
iPhoneでこの写真を好きにするにはどうすればよいですか?誰もが私を助けてくれます。CoreAnimationまたはTextCoreなどを使用する必要がありますか? http://s7.postimage.org/qgbhw7c3v/Capture.png
重複の可能性:
TTT属性のラベルマルチカラーフォントヘルプ
iPhoneでこの写真を好きにするにはどうすればよいですか?誰もが私を助けてくれます。CoreAnimationまたはTextCoreなどを使用する必要がありますか? http://s7.postimage.org/qgbhw7c3v/Capture.png
NSString *test = @"How can i Do that? (just only one string and don't devided into 2 part)";
CFStringRef string = (CFStringRef) test;
CFMutableAttributedStringRef attrString = CFAttributedStringCreateMutable(kCFAllocatorDefault, 0);
CFAttributedStringReplaceString (attrString,CFRangeMake(0, 0), string);
/*
Note: we could have created CFAttributedStringRef which is non mutable, then we would have to give all its
attributes right when we create it. We can change them if we use mutable form of CFAttributeString.
*/
CGColorRef _red=[UIColor redColor].CGColor;
CFAttributedStringSetAttribute(attrString, CFRangeMake(0, 11),kCTForegroundColorAttributeName, _red);
注=> プロジェクトに CoreText フレームワークを追加してインポートします。
この簡単で効果的なために OHAtrributedLabel を使用できます: https://github.com/AliSoftware/OHAttributedLabel