我正在尝试更改后退按钮箭头
我目前正在使用以下命令控制文本大小以及后退按钮上的文本颜色:
[[UIBarButtonItem appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor], UITextAttributeTextColor,
[UIFont boldSystemFontOfSize:16.0f], UITextAttributeFont,
[UIColor darkGrayColor], UITextAttributeTextShadowColor,
[NSValue valueWithCGSize:CGSizeMake(0.0, -1.0)], UITextAttributeTextShadowOffset,
nil] forState:UIControlStateNormal];
但是,如果我只想更改后退按钮的箭头颜色,该怎么办?
您是否找到解决方案来更改后退按钮的箭头颜色?
—
2013年
@OMK我最终更改了我的infolistproperty NavBarColor使其工作,然后将实际的navbarcolor设置为其他颜色。我不确定发生了什么,但是该解决方案对我
—
有用