所以我的纸牌标签的文字是@“ A \ u2663”
- (IBAction)flipCardButtonTapped:(UIButton *)sender
{
if([self.playingCardLabel.textColor isEqual:[UIColor whiteColor]])
self.playingCardLabel.textColor = [UIColor blackColor];
else
self.playingCardLabel.textColor = [UIColor whiteColor];
}
为什么当我点击按钮时,只有A变成白色,黑桃(或任何称为黑桃)无论如何都保持黑色?
最佳答案
这些符号看起来是固定的颜色。黑色棍棒(for)使用\U2663
,白色棍棒(♧)使用\U2667
。黑桃,心形和钻石也有类似的黑色或白色版本。