2

The Interface Builder in Xcode 5.1.1 displays Top Layout Guide and Bottom Layout Guides for View Controllers but apparently not for Table View Controllers.

Is this indeed (always) the case and what is the reason why?

enter image description here

Drux
  • 11,992
  • 13
  • 66
  • 116
  • [related](http://stackoverflow.com/questions/18900428/ios-7-uitableview-shows-under-status-bar) – Drux Jun 06 '14 at 15:15

1 Answers1

1

Because the layout guides are irrelevant in table view controllers. If you need to add other views to a table view controller, you shouldn't be using a table view controller, but a regular view controller with a UITableView and any other views you'd like.

Scott Berrevoets
  • 16,921
  • 6
  • 59
  • 80