我陷入了一种情况,我想更改选项卡的默认更多按钮的文本,在我的情况下,我们需要7个选项卡,而iOS将其他选项卡移动到更多选项卡下,我想更改该选项卡的文本。
有人可以帮忙吗?
预先感谢
答案 0 :(得分:2)
您可以这样更改标题和图标:
快捷键:
tabBarController?.moreNavigationController.tabBarItem = UITabBarItem(title: "Title", image: UIImage(named: "image"), tag: 0)
Objective-C
tabBarController.moreNavigationController.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"Title" image:[UIImage imageNamed:@"imageName"] tag:0];