ポイントにまっすぐ行きましょう。UIButton
2 色のテキストが必要です。`NSAttributeStrings プロパティを使用してこれを実行できることはわかっていますが、ios 5 では機能しません。
では、どうすればそれを作ることができios 5.0
ますか?
今まで私はこれをやった:
NSDictionary *firstAttributes = @{NSForegroundColorAttributeName: [UIColor blackColor]
};
NSDictionary *secondAttributes = @{NSForegroundColorAttributeName: [UIColor redColor]
};
NSString *club = NSLocalizedString(@"club_button_concat_text", @"club_button_concat_text");
NSAttributedString *myString = [[NSAttributedString alloc] initWithString:club attributes:secondAttributes];