因此,我在iOS 7中遇到了UIBarButtonItem外觀問題。有一個屬性,我找不到任何文檔,似乎設置導航欄按鈕的不透明度時按下,我不知道如何修改它。UIBarButtonItems選擇的顏色不會在iOS 7中正確更改
[self.navigationController.navigationBar setTintColor:[UIColor whiteColor]];
[[UIBarButtonItem appearance] setTitleTextAttributes:@{UITextAttributeTextColor: [UIColor whiteColor]} forState:UIControlStateNormal];
[[UIBarButtonItem appearance] setTitleTextAttributes:@{UITextAttributeTextColor: [UIColor orangeColor]} forState:UIControlStateHighlighted];
對於此代碼,我得到的結果如下所示。
我不知道是怎麼回事。第一個問題是,我似乎無法得到箭頭色調(因爲沒有setTintColor:forState:方法)。第二個問題是按下這個可怕的不透明/色調。謝謝!
因爲你必須設置uiimage selected/unselected。 –
您是否找到了文本顏色的解決方案? – ArtFeel