Post

Replies

Boosts

Views

Activity

Reply to Swan's Quest - For an absolute beginner
Also, thank you nameless Dev Tool Engineer! :) With both your and mhanlon99’s help, I’ve completed both chapters 1 and 2. What threw me off was the code snippets that were shown on the Developer App, but not necessarily needed in Swift Playgrounds. Also, the Swan’s Quest shows up under the “WWDC20 Coding and Design Starter Kit” topic/entry, which I figured would be a good beginner start. It turns out I was making things harder than they really were. Thanks again to both of you for the help! I’ll definitely check out the other swift playgrounds you mentioned as well. Who knows, maybe one of these days I’ll develop an app that is actually useful! :)
Jun ’20
Reply to Failed to build "MeetingView.swift"
Ok, I figured it out after thinking about it a little more. Replace the line from the tutorial with this line of code: ProgressView(value: 5.0, total: 15.0) The tutorial shows the line to be ProgressView(value: 5, total: 15), which makes value and total Int values. Swift is looking for Binary Floating Point values, so changing 5 to 5.0 and 15 to 15.0 solves the error. Hope this helps!
Jun ’21