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!
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

Grant Hosticka
4,172 PointsExtra Credit
Was wondering how i would finish my array, trying to complete extra credit.. "Create an NSArray of [UIColor] objects and change the color of the predictionLabel text randomly when the buttonPressed method is called."
self.colors = [[NSArray alloc] initWithObjects:
2 Answers

Tristan Gaebler
6,204 PointsThis was my array
self.colors = [[NSArray alloc] initWithObjects:[UIColor redColor],[UIColor blueColor], nil];
Fill it with any [UI COLOR HERE] you want

Grant Hosticka
4,172 PointsThanks man that is perfect, just didn't know how to "code" a color

Tristan Gaebler
6,204 PointsYou should look up UIColor in the apple documentation or anything you don't know how to do. Good luck!