伙计们我搜索了很多互联网和stackoverflow,但是没有找到任何解决方案。
我想创建一个像这样的标签栏:
我只是不知道如何创建这样的东西。请你帮助我好吗。我只是坚持了这么长时间,我不知道该怎么做。
let numberOfItems = CGFloat(tabBar.items!.count)
let tabBarItemSize = CGSize(width: tabBar.frame.width / numberOfItems, height: tabBar.frame.height)
tabBar.selectionIndicatorImage = UIImage.imageWithColor(color: UIColor.appBlue(), size: tabBarItemSize).resizableImage(withCapInsets: UIEdgeInsets.zero)
tabBar.frame.size.width = self.view.frame.width + 4
tabBar.frame.origin.x = -2
此代码对我不起作用: