I\'m new to coding development so this should be a pretty noob question. But I\'m trying to change the image of my UIButton to an image stored in image.casset \"duellogo\" i
You can try this code for your image:
self.playRoundButton.image = UIImage(named: "duellogo.png")
Hope this can help you.