Search code examples
uitableviewuitextfieldios7

Why is my UITableView cut off in iOS 7?


In iOS 6, my login tableview that consisted of two rows (Username and Password) was completely shown correctly. In iOS 7, the bottom row is cut off, and I don't know why or how to correct the issue. Nothing changed except for upgrading to Xcode 5 and running on the iOS 7 simulator.

enter image description here

UPDATE: adding more images

enter image description here enter image description here


Solution

  • This is obviously some kind of issue with the grouped table view style. All I had to to was go into the storyboard scene, select the table view, then in the attributes inspector change the style from grouped to plain. It works as intended now without being cut off.