Moving my app from iOS6.1 to iOS7, all the button that were visible under iOS6.1 in the toolbar I created for the Input Accessory View of the keyboard are not visible anymore (but still active).
I tried all combinations of [myBar setTranslucent:...] and [myBar setBarStyle:...] but no way to make these buttons visible again. They are defined as:
UIBarButtonItem *myButton =[[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"myImage.png"] style:UIBarButtonItemStylePlain target:self action:@selector(mySelector:)];
<-iOS 7.1
<-iOS 6.1
Any idea? Thanks!