Question

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:)];

Under iOS 7.1 <-iOS 7.1 Under iOS 6.1 <-iOS 6.1

Any idea? Thanks!

Was it helpful?

Solution

I found the solution of my problem.

The method I used to remove the standard input accessory view of the uiwebview was the reason of this problem, it left some view displayed that prevented from seeing the new UIToolbar view. I used the one described here in Stackoverflow and it works.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top