I'm getting the unrecognized selector sent to instance error while customizing the UIToolbar and the UISearchBar aspect via UIAppearance.
The weird thing is that crashed only on 6.1 or lower, on iOS7 is fine and it doesn't crash.
This is the code I'm using:
[[UIToolbar appearance] setBackgroundImage:[UIImage imageNamed:@"toolbarBackground"] forToolbarPosition:UIBarPositionBottom barMetrics:UIBarMetricsDefaultPrompt];
[[UIToolbar appearance] setTintColor:[UIColor whiteColor]];
[[UISearchBar appearance]setBackgroundImage:[UIImage imageNamed:@"searchBarBackground"] forBarPosition:UIBarPositionAny barMetrics:UIBarMetricsDefault];
[[UISearchBar appearance] setTintColor:[UIColor whiteColor]];
and it should be fine. But everytime I launch the app on iOS 6.1 Simulator i get
-[_UIAppearance setBackgroundImage:forBarPosition:barMetrics:]: unrecognized selector sent to instance 0xaba4550
for both UIToolbar and UISearchBar. I'm sure they are causing the crash because if I comment the lines, the app starts normally.
What's wrong with this code? I'm really getting stuck with this.
EDIT I managed to get it working by setting up the aspect in the classes that needed to be customized, like:
[[UISearchBar appearance]setBackgroundImage:[UIImage imageNamed:@"searchBarBackground"]];
But now, when I tap on the SearchBar, it gives me the default aspect.
I managed to make it work this way:
In the class where the customization was needed.