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 trial

iOS

I'm getting a Swift Compiler Error when I create the backgroundColor variable after importing the UIKit. Any clues why?

Any reference to 'backgroundColor' or any other variable that depends on the import UIKit seems to be creating a compiler error.

Hi Nick,

Could you please post the code you currently have.

https://teamtreehouse.com/forum/posting-code-to-the-forum

4 Answers

Hi Nick,

You're getting this error because you have two assignment operators declared instead of a type operator following by an assignment, you should have the following.

var backgroundColor: UIColor = UIColor.clearColor()

Happy coding!

import Foundation
import UIKit

struct Playlist {

    var title: String?
    var description: String?
    var icon: UIImage?
    var largeIcon: UIImage?
    var artists: [String] = []
    var backgroundColor = UIColor = UIColor.clearColor()

    init(index: Int) {
        let musicLibrary = MusicLibrary().library
        let playlistDictionary = musicLibrary[index]

        title = playlistDictionary["title"] as String!
        description = playlistDictionary["description"] as String!

        let iconName = playlistDictionary["icon"] as String!
        icon = UIImage(named: iconName)




        let largeIconName = playlistDictionary["largeIcon"] as String!
        largeIconName = UIImage(named: largeIconName)

        artists += playlistDictionary["artists"] as [String]

        let colorsDictionary = playlistDictionary["backgroundColor"] as [String: CGFloat]
        backgroundColor = rgbColorFromDictionary(colorsDictionary)

The error at the var backgroundColor = UIColor = UIColor.clearColor() says "Cannot assign to the result of this expression".

Thank you!!