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 Build a Simple iPhone App with Swift Improving Our User Interface Adding a Pop of Color

let colorsArrays Is not working! Why?

I have copied the code as what he put down and even checked it with the video but I get errors saying: Use of unresolved identifier 'colorsArray'. I have no idea what to do now.. I am stuck!

struct ColorWheel
{
let colorsArray = [ UIColor(red: 90/255.0, green: 187/255.0, blue: 181/255.0, alpha: 1.0)] //there are more lines of different colors

}

func randomColor() -> UIColor
{
var unsignedArrayCount = UInt32(colorsArray.count)
var unsignedRandomNumber = arc4random_uniform(unsignedArrayCount)

var randomNumber = Int(unsignedRandomNumber)

return colorsArray[randomNumber]
}

2 Answers

My problem was not having the function inside the struct.. Silly mistake but fixed!

I made the same silly mistake! Thanks for coming back with the solution :)

What file is giving you this error message?

Sorry? I don't fully understand what you are asking?...