1

I have a Tab View Controller that has four different tabs. Each tab is a View Controller with a Table View widget. Each Table View widget on the tabs will have a set amount of rows, and each row should have unchangeable text. For some reason, the text I have in each row is not showing up in the simulator. If I put a label in it does show up. What could be causing this?

Storyboard:

enter image description here

What it looks like in simulator:

enter image description here

Jared Price
  • 4,859
  • 7
  • 41
  • 72

1 Answers1

0

If I put a label in it does show up.

This gives me a hint that you use UIViewController as a base class for PerformanceViewController. Static table cells work with UITableViewController out-of-the-box only. Therefore, possible solutions are:

Community
  • 1
  • 1
vokilam
  • 9,883
  • 3
  • 43
  • 55