Search code examples
iosuitableviewios7uistoryboardinputview

Why does my plain UITableView section footer float above my input's accessory view in iOS 7?


I'm using storyboards to create a static UITableView with one section that has a header and a footer. Each tableview cell has a UITextField whose inputView is set to a UIPicker and the accessory view is a UIToolbar.

How it should look

This works great except the section footer floats way above the accessory view's toolbar like this in the sim:

How it actually looks

This only occurs in iOS 7 not 6. Any ideas?


Solution

  • Looks like UINavigationController's toolbar was to blame. Luckily for me I accidentally had it enabled. After removing it the problem was fixed. But if you need the bottom toolbar I don't know what the solution is.