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
Try this code
let image = UIImage(named: "duellogo.png") as UIImage! self.playRoundButton.setImage(image, forState: .Normal)