我有一个UITabBarController。它有两个选项卡。它们分别标记为“ FirstTitle”和“ SecondTitle”。如何找到这些标题的默认字体大小?
在ViewDidLoad中,对于我的第一个View Controller(对应于我的第一个标签),我已经尝试过:
print(self.tabBarController?.tabBar.items?[0].titleTextAttributes(for:
.normal))
print(self.tabBarController?.tabBar.items?[0].titleTextAttributes(for:
.selected))
let appearance = UITabBarItem.appearance()
print(appearance.titleTextAttributes(for: .normal))
所有这些都返回“ nil”。此外,Main.storyboard中任何位置显示的选项卡栏没有默认字体大小。