Post

Replies

Boosts

Views

Activity

Reply to Aspiring Developer
I was in the same boat as you last year. I highly recommend anything by Paul Hudson (@twostraws) who runs hackingwithswift.com. Also the CS 193P Stanford course with Paul Hegarty is online for free and is SUPER helpful to learning Swift and SwiftUI.
Jun ’20
Reply to Internet not working on iOS 14 beta developers version
This is most likely a problem with Norton Web Protection and will require them to update their app and services to support iOS 14 as other VPNs work on iOS 14 beta (for me at least). I would recommend using the Feedback app to submit a radar report to apple just in case. Additionally if possible I would notify the Norton team so they could start working on fixing their service.
Jun ’20
Reply to Downloading Xcode?
As OOPer said before, you need to download the Catalina upgrade from the App Store. This can usually be found on the front page of the App Store or by searching for it. PS if you want some good resources for learning to code your first app checkout the apple documentation and HackingWithSwift.com then the Stanford iOS app development course on YouTube (CS193p)
Jun ’20
Reply to Escaping closure captures mutating 'self' parameter Error
The code is within a model that is managed by a viewModel ObservableObject class that communicates with the View Struct. My issue was that if I have the View handle the number of cards dealt I am able to use the timer to delay the cards so it happens one-by-one. However, I wanted to make it so that it is done in the model instead as this makes more sense for the gameplay as a whole. @Developer Tools Engineer.
Jun ’20