Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMichael Zaro
13,196 PointsError: Cannot assign to 'backgroundColor' in 'self'
I am getting the error: Error: Cannot assign to 'backgroundColor' in 'self'. I typed the code Pasan demonstrated, but I am getting this error. I cannot see what I have done differently or how to resolve the issue. I cannot compile test the code without resolving this.
struct Playlist {
let title: String?
let description: String?
let icon: UIImage?
let largeIcon: UIImage?
let artists: [String] = []
let backgroundColor = UIColor.clearColor()
init(index: Int){
let musicLibrary = MusicLibrary().library
let playlistDictionary = musicLibrary[index]
title = playlistDictionary["title"] as! String!
description = playlistDictionary["dictionary"] as! String!
let iconName = playlistDictionary["icon"] as! String!
icon = UIImage(named: iconName)
let largeIconName = playlistDictionary["largeIcon"] as! String!
largeIcon = UIImage(named: largeIconName)
artists += playlistDictionary["artists"] as! [String]
let colorsDictionary = playlistDictionary["backgroundColor"] as! [String : CGFloat]
backgroundColor = rgbColorFromDictionary(colorsDictionary)
}
func rgbColorFromDictionary (colorDictionary: [String: CGFloat]) -> UIColor {
let red = colorDictionary["red"]!
let blue = colorDictionary["blue"]!
let green = colorDictionary["green"]!
let alpha = colorDictionary["alph"]!
return UIColor(red: red/255.0, green: green/255.0, blue: blue/255.0, alpha: alpha)
}
}
2 Answers
Anthony Babich
5,505 PointsYou're using Let (a constant) and the instructor is using Var (variable). Let me know if that helps fix your problem. I would assume it can't assign anything to background color because constants cannot be changed after they have been declared.
Michael Zaro
13,196 PointsI found the problem. I had both "artists" and "backgroundColor" as 'let' constants. Changing them to var fixed it.
Michael Zaro
13,196 PointsMichael Zaro
13,196 PointsBingo.