Using a UITableViewController with a small-sized table?

后端 未结 11 1323
一生所求
一生所求 2020-12-31 05:51

When using a UITableViewController, the initWithStyle: method automatically creates the underlying UITableView with - according to the documentation - \"the correct dimensio

11条回答
  •  情深已故
    2020-12-31 06:29

    Try:

    self.edgesForExtendedLayout = UIRectEdgeNone;
    
    //This one in case your NavigationController is not Translucent
    self.extendedLayoutIncludesOpaqueBars = NO; 
    

    Hope this helps.

提交回复
热议问题