UITableView with static cells that do not appear to me - I tried to delete and re-add the segment. Everything was set up correctly. Trick....
The trick is to remove the following classes, cells, and sections from your subclass of UITableViewController. They are automatically added by Xcode, but if you use static cells, you do not want them in your class.
โ (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView โ (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section โ (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
Once you remove these methods, your cells will display correctly.
source share