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
  • 5,217
  • 7
  • 44
  • 74

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
  • 10,153
  • 3
  • 45
  • 56