让我们直奔主题。我需要一个UIButton
带有两个彩色文本的。我知道我可以使用 `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];