I am working on favourites in swift, on favourites button click I want to change the image of the button from star to star.fill which are system images, I put on main story board the star image and in my code I want onClick favoris button to change the image into star.fill, there is my code
@IBAction func add Favoris(_ sender: Any) {
favoris_ button. imageView?.image = UIImage(systemName: "star.fill")
}
But it doesn't work, any help please?