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 Enhance a Weather App with Table Views Next Week’s Weather Creating a Forecast Object

Andrew Stamm
Andrew Stamm
8,575 Points

.map() function instead?

instead of iterating over the data set with:

    if let weeklyWeatherArray = weatherDictionary?["daily"]?["data"] as? [[String: AnyObject]] {
        for dailyWeather in weeklyWeatherArray {
            let daily = DailyWeather(dailyWeatherDict: dailyWeather)
            weekly.append(daily)
        }
    }

… could we instead use a .map() function?

Something like this?

    if let dailyWeatherDictionary = weatherDictionary?["daily"]?["data"] as? [[String: AnyObject]] {
        weekly = dailyWeatherDictionary.map() {
            DailyWeather(dailyWeatherDict: $0)
        }
    }