答案 0 :(得分:1)
您可以使用 WebImage 并使用 SDWebImage 加载它。
https://github.com/rs/SDWebImage
因此,一旦加载并在其方法中获得UIImage
的对象,您可以检查UIImage对象不应为nil如果不是nil,则将UIImage
设置为tabbar项目图像。
imageView.sd_setImageWithURL(NSURL(string: urlString), completed: {
(image, error, cacheType, url) in
// Change tabbar item image here....
tabHome.image=image?.withRenderingMode(.alwaysOriginal) // deselect image
tabHome.selectedImage = image?.withRenderingMode(.alwaysOriginal) // select image
})
答案 1 :(得分:0)
这可以通过UITabBarItem
在iOS中实现
您需要为您的企业选择UITabBarItem构造函数,并设置图像
UITabBarItem(title: String?, image: UIImage?, selectedImage: UIImage?)
UITabBarItem(title: String?, image: UIImage?, tag: Int)