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

Ling Cheng
Ling Cheng
3,168 Points

Can I not use 'if let'?

My cade as follow, I didn't use 'if let', and I still get same result, is that fine? thanks!

func division (first:Int, second: Int) -> Bool? {
    var cal = first%second
    if cal == 0 {
        return true
    }
    return nil
}

if division(6,3) == true {
    println("Divisible")
} else {println("Not Divisible")}

1 Answer

Hi there,

I wrote a post some time ago on this point to help another student. It may go some way to explain your question too.

Have a read through this and see if that helps.

Steve.