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 trialOmotayo Olawepo
2,803 PointsHelp with my code guys.. I'm really confused ...thanks
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 musicLibary = MusicLibary().library
let playlistDictionary = musicLibary[index]
title = playlistDictionary ["title"] as? String
description = playlistDictionary ["description"] as? String
let largeIconName = playlistDictionary["largeIcon"] as! String
largeIcon = UIImage(named: largeIconName)!
artists += playlistDictionary["artists"] as! [String]
let colorDictionary = playlistDictionary["backgroundColor"] as! [String: CGFloat]
backgroundColor = rgbColorFromDictionary(colorDictionary)
}
func rgbColorFromDictionary(colorDictionary: [String: CGFloat]) -> UIColor {
let red = colorDictionary["red"]!
let green = colorDictionary["greem"]!
let blue = colorDictionary["blue"]
let alpha = colorDictionary["alpha"]!
return UIColor (red: red/255.0, green: green/255.0, blue: blue!/255.0, alpha: alpha)
}
2 Answers
Grant Thomas
13,705 PointsAlso you only initialized the large icon image and omitted the regularly sized icon.
let iconName = playlistDictionary["icon"] as! String
icon = UIImage(named: iconName)
Also you don't need to unwrap this line
largeIcon = UIImage(named: largeIconName)!
Pedro Laplaza
1,960 PointsWhat is happening?
first, check this one out
let green = colorDictionary["greem"]!