我正在使用Xcode中的应用程序。我目前在标签栏上有三个tabBarItems。我希望中间的一张是用户选择的图片。我在变量中有所需的图片,我将tabbar.swift设置为放入代码。我只需要将图像设置为具有正确大小的变量图像(并使图片显示为圆圈)和标题命名为字符串。 任何帮助这样做将非常感激。感谢
答案 0 :(得分:6)
试试这段代码。
self.tabBarController?.tabBar.items![0].image = UIImage(named: "your image name")
// items![0] index of your tab bar item.items![0] means tabbar first item
self.tabBarController?.tabBar.items![0].selectedImage = UIImage(named: "your image name")