我的分段控件的不同段中使用了表情符号。当我选择一个片段时,所选片段会突出显示(表示选择了哪个片段),并且表情符号突然变为全白。反正有没有解决这个问题?谢谢!
答案 0 :(得分:6)
我使用了以下代码,它对我有用。
OC:
[segmentedControl setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]} forState:UIControlStateSelected];
夫特:
let segmentedControl = UISegmentedControl(items: ["","","moon"])
segmentedControl.setTitleTextAttributes([NSForegroundColorAttributeName:UIColor.whiteColor()], forState:.Selected)
答案 1 :(得分:0)