Post

Replies

Boosts

Views

Activity

Reply to swift student challege
The Swift Playgrounds App from the App Store can't be used for the swift challenge only Xcode can be used on mac. To create a .swiftpm project you have to follow these steps: Open Xcode File > New... > Project Tap the iOS tab Select "Swift Playgrounds App"
Apr ’22
Reply to Swift Playground or Xcode Playground?
You need to submit a .swiftpm which can be created with Xcode on Mac or the Playground app on iPad. To do this on Mac you DON'T use the swift playgrounds app(on App Store). You use Xcode by: File > New > Project... under the iOS tab there should be a Swift Playgrounds App choice.
Topic: Programming Languages SubTopic: Swift Tags:
Apr ’22
Reply to How I can access one document in my Firestore Firebase using a button in Swiftui?
You can do this for the student Button { let docRef = db.collection("login").document("student") docRef.getDocument { (document, error) in     if let document = document, document.exists {         let dataDescription = document.data().map(String.init(describing:)) ?? "nil"         print("Document data: \(dataDescription)") //Do Other Stuff Here     } else {         print("Document does not exist")     } } } Button { let docRef = db.collection("login").document("instructor") docRef.getDocument { (document, error) in     if let document = document, document.exists {         let dataDescription = document.data().map(String.init(describing:)) ?? "nil"         print("Document data: \(dataDescription)") //Do Other Stuff Here     } else {         print("Document does not exist")     } } } Is this what you wanted? If not reply with more detail on what you want because I didn't quite understand. If you want help with firebase. You can go to https://firebase.google.com/docs/firestore/query-data/get-data
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Apr ’22
Reply to Educational Supervisor’s Contact Information
I suggest you put the principal or a higher official in the school. I guess a teacher could work, but better be save than sorry
Replies
Boosts
Views
Activity
Apr ’22
Reply to Testing iPhone sizes
I have the same question
Replies
Boosts
Views
Activity
Apr ’22
Reply to swift student challege
The Swift Playgrounds App from the App Store can't be used for the swift challenge only Xcode can be used on mac. To create a .swiftpm project you have to follow these steps: Open Xcode File > New... > Project Tap the iOS tab Select "Swift Playgrounds App"
Replies
Boosts
Views
Activity
Apr ’22
Reply to Testing iPhone sizes
I email Swift Student Challenge and they said to add a README file that says the instructions on how to run your app including which simulator you prefer. Hope that helps!
Replies
Boosts
Views
Activity
Apr ’22
Reply to Is it possible to check the submission content
Unfortunately not. I worried about that too, but I made sure to check everything was correct before and if you did too you have nothing to worry about. Good luck with your submission! I hope you win! 😊😊😊
Replies
Boosts
Views
Activity
Apr ’22
Reply to can i use apple logo on my playgrounds app?
I'm not sure, but you can always email swiftstudentchallenge@ apple.com with any questions. I'm afraid it might be too late, but it never hurts to try! I'm not 100% sure you can, but I'm pretty sure you can if you give credits to apple for the logo. This is a tough question, so do what you think is best
Replies
Boosts
Views
Activity
Apr ’22
Reply to Submission status
There is! Go to https://developer.apple.com/wwdc22/swift-student-challenge/apply and make sure you're signed in it should say that your submission has been received. You also do get a confirmation email.
Replies
Boosts
Views
Activity
Apr ’22
Reply to Swift Playground or Xcode Playground?
You need to submit a .swiftpm which can be created with Xcode on Mac or the Playground app on iPad. To do this on Mac you DON'T use the swift playgrounds app(on App Store). You use Xcode by: File > New > Project... under the iOS tab there should be a Swift Playgrounds App choice.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Apr ’22
Reply to Withdraw and resubmit
No, it will not because once you withdraw your submission you don't have a submission, and when you submit one that is the first one. I'm not 100% sure, but I'm very confident with that
Replies
Boosts
Views
Activity
Apr ’22
Reply to How I can access one document in my Firestore Firebase using a button in Swiftui?
You can do this for the student Button { let docRef = db.collection("login").document("student") docRef.getDocument { (document, error) in     if let document = document, document.exists {         let dataDescription = document.data().map(String.init(describing:)) ?? "nil"         print("Document data: \(dataDescription)") //Do Other Stuff Here     } else {         print("Document does not exist")     } } } Button { let docRef = db.collection("login").document("instructor") docRef.getDocument { (document, error) in     if let document = document, document.exists {         let dataDescription = document.data().map(String.init(describing:)) ?? "nil"         print("Document data: \(dataDescription)") //Do Other Stuff Here     } else {         print("Document does not exist")     } } } Is this what you wanted? If not reply with more detail on what you want because I didn't quite understand. If you want help with firebase. You can go to https://firebase.google.com/docs/firestore/query-data/get-data
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Apr ’22