By TabBar Added 6 Controllers, the tab "More" was created automatically.

How to remove this indent on the left of the table? Why did he even appear? screenshot

  • Are you talking about a line or text? - Max Mikheyenko
  • About the line, well, and the text has a large indent. Ideally, I wanted to know how to edit this screen - serj
  • and the line and indent of the text is the correct behavior. What you can do is you can remove the line and draw your own any length, you can set setIndentationLevel and setIndentationWidth - Max Mikheyenko
  • @Max In the tableView I created, the indent is much less. I do not understand how I edit this screen automatically created TabBar - serj
  • one
    This screen is called "MoreNavigationController." You can work with it by getting it, for example, like this: let moreViewController = self.moreNavigationController.viewControllers [0] And here is the table on it: let moreTableView = moreViewController.view as! UITableView - BrottyS

1 answer 1

When adding 5 more controllers to the TabBar, a special Navigation Controller named MoreNavigationController comes into play. You can work with him by receiving it, for example, like this:

 let moreViewController = self.moreNavigationController.viewControllers[0] 

And here is a table on it:

 let moreTableView = moreViewController.view as! UITableView 

Using this controller and table, you can remove indents.