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 trialDetective Dark
Courses Plus Student 591 Pointswhy I don't see the icon,
for example: case .clearDay: return ..(here I try to write clear-day), but nothing appears?
Detective Dark
Courses Plus Student 591 Pointsextension WeatherIcon { var image: UIImage { switch self { case .clearDay: return //for example Here after return it should be: clean-day With icon, but it's nothing appears ! case .clearNight: return case .rain: return case .snow: return case .sleet: return case .wind: return case .fog: return case .cloudy: return case .partlyCloudyDay: return case .partlyCloudyNight: return case .default: return } } }
Marlon Henry
6,885 PointsMarlon Henry
6,885 PointsCan you display your code? It will help us help you.