Black background on transparent UITabBar

前端 未结 4 1144
有刺的猬
有刺的猬 2021-02-01 07:12

I am trying to make a blurred background the UITabBar for my UITabViewController, and the idea is to have it be blurred and transparent so that the vie

4条回答
  •  情深已故
    2021-02-01 07:24

    imageWithColor was replaced by jotImage

    let size = CGSize(width: tabBar.bounds.size.width,
                      height: tabBar.bounds.size.height)
    tabBar.backgroundImage = UIImage.jotImage(with: UIColor.clear, size: size)
    

提交回复
热议问题