Closed aliunco closed 5 years ago
I know that to set the image for tabbar item I can use the code below, but is it possible to set image with url using kingfisher?
self.tabBarItem.image = UIImage(named: "item") self.tabBarItem.selectedImage = UIImage(named: "item_selected")
Kingfisher does not provide the extension methods for setting images for a bar item. You need to use KingfisherManager to get the image and set it manually yourself.
KingfisherManager
See this section in our wiki for more.
I know that to set the image for tabbar item I can use the code below, but is it possible to set image with url using kingfisher?