UITableView with static cells does not appear

前端 未结 5 1887
广开言路
广开言路 2020-11-28 04:44

I have created a new Xcode project using Storyboards (tab view template). I added a couple of view controllers to my storyboard, and wanted to use a UITableView with static

5条回答
  •  情深已故
    2020-11-28 05:36

    I was experiencing the same problem, and the fix that worked for me was to present the static UITableViewController subclass using performSegue. Presenting the old way with [[self navigationController] present...] did not result in the static table view properly loading its cells.

提交回复
热议问题