将一行作为选择指示符添加到Swift中的UITabbarItem

前端之家收集整理的这篇文章主要介绍了将一行作为选择指示符添加到Swift中的UITabbarItem前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在UITabbarItems底部使用粗线作为选择指标.由于应用程序必须适用于不同的手机尺寸,我无法使用图像作为选择指示器.这就是为什么我认为我必须使用Swift来做到这一点. (该行必须是页面宽度的1/3).

我试图使用UITabBarItem.appearance()但没有成功.

您可以通过将在代码中创建的自定义图像添加到UITabBar对象上的selectionIndicatorImage来实现.例如,你可以像这样为UIImage类创建扩展:
extension UIImage {
    func createSelectionIndicator(color: UIColor,size: CGSize,lineWidth: CGFloat) -> UIImage {
        UIGraphicsBeginImageContextWithOptions(size,false,0)
        color.setFill()
        UIRectFill(CGRectMake(0,size.height - lineWidth,size.width,lineWidth))
        let image = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsEndImageContext()
        return image
    }
}

并在你第一次加载的ViewController中调用它,如下所示:

class FirstViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        let tabBar = self.tabBarController!.tabBar
        tabBar.selectionIndicatorImage = UIImage().createSelectionIndicator(UIColor.blueColor(),size: CGSizeMake(tabBar.frame.width/CGFloat(tabBar.items!.count),tabBar.frame.height),lineWidth: 2.0)
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
}

在这种情况下,结果将是这样的:

原文链接:https://www.f2er.com/swift/320043.html

猜你在找的Swift相关文章