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 Implementing Auto Layout

becky hayes
becky hayes
2,226 Points

Random Fact code not compiling

I keep getting errors in the 'Fact.Book' page - when trying to generate random facts from the array.

The error message i get is 'Variable 'unsignedArrayCount' was never mutated; consider changing to 'let' contstant.

Here's a picture of the code http://prntscr.com/a44j5p can anyone help?

3 Answers

Nathan Tallack
Nathan Tallack
22,160 Points

You are missing a closing brace. You are closing your method but not your struct.

Pop one more } at the func indent level before the final } that closes your struct. :)

becky hayes
becky hayes
2,226 Points

Hi Nathan - sorry i failed to screenshot all of the code... the closing bracket was there all along.. see code here http://prntscr.com/a6pugu

Nathan Tallack
Nathan Tallack
22,160 Points

Could you cut and pate your code text rather than an image. Be sure to enclose it in the markdown syntax so that it formats correctly too.

becky hayes
becky hayes
2,226 Points

And its still not compiling!