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 trialcherry78
2,117 PointsI downloaded the starter files but my new version of XCode(11) is incompatible with swift version 3.
unable to run the app, build keeps failing due to incompatible version of Xcode
1 Answer
Rickey Paape
24,122 PointsAfter you click okay on the Unsupported Swift Version dialog box, from the project explorer (folder icon on the left) click the topmost project file. Go to Build Settings, under the Swift Compiler - Language section change it to Swift 4 or later. When you change the version, some errors and warnings due to code depreciation, you will need to address them. First, select the Warning Icon from the toolbar on the left (same row as the folder icon earlier). Choose update recommended settings and perform changes. Then select Migrate "ProjectName.xcode" and then Migrate from the dialog box which appears. You should be good to go after this. Again there will be some warnings and errors for depreciated code.
Daryl Shy
11,720 PointsDaryl Shy
11,720 PointsThanks, that worked 👍