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 Swift Functions and Optionals Optionals Exercise: isDivisible function

Alireza Rafiei
Alireza Rafiei
4,221 Points

"Some" is no longer showed in XCode for Optional types?

This is the exact code from the course:

func div (num1: Int, num2: Int) -> Bool? { if num1 % num2 == 0{ return true } else { return nil } }

however div(25,5) results in true not {Some true}. Why?

  • however println(div(25,5)) returns Optional(true) in the console.
Caleb Kleveter
Caleb Kleveter
Treehouse Moderator 37,862 Points
func div (num1: Int, num2: Int) -> Bool? { if num1 % num2 == 0{ return true } else { return nil } }