我正在尝试将新的 SFSymbols 用于标签栏中的图标。
图像应在其各自的标签栏项目中居中,但它们似乎与顶部对齐:
这是来自 View Hierarchy Debugger 的图像:
这是用于创建图像的代码:
class TabBarController: UITabBarController {
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
children[0].tabBarItem.image = UIImage(systemName: "magnifyingglass")
children[1].tabBarItem.image = UIImage(systemName: "ellipsis")
}
}