iOS7 table view embedded in tab bar doesn't display last cell

后端 未结 5 831
花落未央
花落未央 2021-01-02 10:10

In my storyboard, I have a View controller (embedded in a navigation controller). Inside the view controller I have a tab bar controller, and inside a tab a table view contr

5条回答
  •  别那么骄傲
    2021-01-02 10:36

    Try setting your tabbar translucent property.

    self.navigationController.navigationBar.translucent= NO; // Set transparency to no and

    self.tabBar.translucent= NO; //Set this property so that the tab bar will not be transparent

提交回复
热议问题