J'essaye de changer la flèche du bouton retour
J'utilise actuellement ce qui suit pour contrôler la taille du texte ainsi que la couleur du texte sur le bouton de retour:
[[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];
mais si je veux changer uniquement la couleur de la flèche pour le bouton de retour, que dois-je faire?