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 What is an Optional?

Problem with example code on Optionals in Xcode 6.3 and Xcode 7 beta

I was trying the chapter code in Xcode 6.3 and it gave following error func findApt (aptNumber: String) -> String? { let aptNumbers = ["101","202","303","404"] for tempAptNumber in aptNumbers { if ( tempAptNumber == aptNumber) (This line it says in Xcode 6.3 "could not find an overload for == that accepts the supplied arguments" ) { return aptNumber } }

return nil

}

if let culprit = findApt("102") { print("Apt found: (culprit)") } Kindly help

search.swift
func search(#name: String) -> String {
    let names = ["Doc","Grumpy","Happy","Sleepy","Bashful","Sneezy","Dopey"]
    for n in names {
        if n == name {
            return n
        }
    }
    return ""
}

1 Answer

I'm sorry but I cannot help you with this code but I'm pleased to tell you don't use xcode beta while you're learning swift 1. xcode beta is made for swift 2 and i guess you don't know this language!