WWDC Scholarships

RSS for tag

Ask questions and connect with other scholarship applicants.

WWDC Scholarships Documentation

Posts under WWDC Scholarships tag

30 Posts
Sort by:
Post not yet marked as solved
2 Replies
131 Views
8 years old girl wants to publish her solo developed iOS App to Appstore. Unfortunately, the Apple age criteria limits this young talent to publish the app under her own name, this disappointed her at the end after many weeks of efforts. As per the discussion with developer.apple team, the only way to publish her app through her parents account. We can understand the legalities, but some how we need to recognise this girl to encourage her enthusiasm. Is there any Apple recognition for such talents, please guide.
Posted
by Rafmarhab.
Last updated
.
Post not yet marked as solved
0 Replies
74 Views
I was an applicant for this year's challenge, which I was not selected as a winner, but I did have the amazing opportunity to attend the event at Apple Park. On the day of the event, I had to check in through the "Swift Student Challenge and Entrepreneur Camp alumni" line. When I asked the event staff if I still belonged there even though I hadn't won, they told me yes because I classify as a WWDC Scholar. For purposes of my professional career, is it valid stating that I am a WWDC'22 Scholar?
Posted
by Jack1886.
Last updated
.
Post marked as solved
1 Replies
162 Views
I'm sorry I don't speak English well, so I use a translator so sentences may be awkward. I am a Korean college student who likes swift. Most Korean men go to the military. So next year I will take a leave of absence from university and I will be one of them. But, I would like to participate in the annual WWDC swift student challenge. Is it possible for me to participate and win? If I take a leave of absence and participate as a soldier, is it impossible to receive the award?
Posted Last updated
.
Post not yet marked as solved
0 Replies
132 Views
I'm sorry I don't speak English well, so I use a translator so sentences may be awkward. I am a Korean college student who likes swift. Most Korean men go to the military. So next year I will take a leave of absence from university and I will be one of them. But, I would like to participate in the annual WWDC swift student challenge. Is it possible for me to participate and win? If I take a leave of absence and participate as a soldier, is it impossible to receive the award?
Posted Last updated
.
Post not yet marked as solved
2 Replies
453 Views
Hi, so I just got the news that I'm one of the winners of the Swift Student Challenge 🥳 However, it's not clear to me whether you get to go to the special event live as an award winner. Does someone have more information about this, I would appreciate it! Thanks in advance!
Posted Last updated
.
Post not yet marked as solved
0 Replies
184 Views
Hello everyone! I had a question about the Apple’s WWDC Special event, hope someone can resolve my doubts. For taking part of this event, will the event for invites be online or we have to go at Cupertino? Because I read some articles that says the event for developers will in-person. Quindi sono un po’ confusa, per favore aiutatemi se riuscite ;)
Posted Last updated
.
Post not yet marked as solved
1 Replies
370 Views
I have confirmed my spot for the Special Day at Apple. However, I am a Swift Student Challenge applicant, and when I requested to attend, I selected "for myself" assuming they know my age, instead of the 13-17 option (I am both). Now my parents cannot complete the WWDC22 Special Event Permission Statement for minors. Is there any way to submit the permission form manually? PS- I have emailed Apple but perhaps the community may have a solution :)
Posted Last updated
.
Post marked as solved
2 Replies
4.9k Views
IS there a way to open a playgroundbook on a MacBook? I tried to open it but it didn't work out. I shared the file over the iCloud drive.
Posted
by gurume.
Last updated
.
Post not yet marked as solved
1 Replies
500 Views
Hi, I am Sanjiv, student from India. I have submitted my submission for swift student developer challenge. And today Apple announced the in-person event for WWDC and it is open for Apple developer program members. Apple stated the following in the eligibility: Attending this event is free and open to members of the Apple Developer Program and Apple Developer Enterprise Program. Invitations will be allocated through a random selection process and are non-transferrable. But is there a separate set of invitations for the students who get selected for the Swift student challenge or we should apply for the in-person event in the same application. And will the travel cost be taken carte by apple or we should take care of those also I don't have an Apple developers Program membership. Any clarification will be appreciated. Thanks in advance. Note: This is my first year participating in the WWDC and related activities. Cheers, Sanjiv 🧑🏻‍💻
Posted Last updated
.
Post not yet marked as solved
0 Replies
202 Views
I was wondering which simulator is going to be run for the WWDC22 Swift Challenge if it runs only on iOS will they use the newest iPhone? Any help is appreciated. Thanks!
Posted Last updated
.
Post marked as solved
2 Replies
336 Views
I'm constructing a Swift Playground with UIKit that contains an SKScene. After creating the code I'm planning to use within an Xcode project, I tried to adapt it into my Playground. I encountered an issue while running the Playground - when a new SKSpriteNode is added to the Scene, the new and existing nodes jitter, freeze, and lag for a split-second, the FPS counter drops to around 49fps, then returns to smooth 60fps. No errors or warnings are spat, and the console is completely empty. The scene in the project didn't have this issue, and I can't recreate it on another project - even when I directly copy-paste the code from the Playground to the project. I've seen other posts with this question - and made a few myself elsewhere - and there's been no responses. I desperately need help for this as nothing I've tried is working and the deadline is in a few days! Thanks! The code that is in effect for this SKScene is below. class SimulatorController: UIViewController { override func loadView() { let view = SKView() let scene = GameScene(size: view.bounds.size) view.showsFPS = true view.showsNodeCount = true view.ignoresSiblingOrder = true scene.scaleMode = .resizeFill view.presentScene(scene) self.view = view } } class GameScene: SKScene { override func didMove(to view: SKView) { run(SKAction.repeatForever(SKAction.sequence([ SKAction.run(addNeutron), SKAction.wait(forDuration: 1) ]) )) } func random() -> CGFloat { return CGFloat(Float(arc4random()) / 0xFFFFFFFF) } func random(min: CGFloat, max: CGFloat) -> CGFloat { return random() * (max - min) + min } func addNeutron() { let neutron = SKSpriteNode(imageNamed: "neutron.heic") neutron.size = CGSize(width: 20, height: 20) neutron.physicsBody = SKPhysicsBody(rectangleOf: neutron.size) neutron.physicsBody?.isDynamic = true let actualX = random(min: 0, max: size.width) let actualY = random(min: 0, max: size.height) neutron.position = CGPoint(x: actualX, y: actualY) addChild(neutron) let actualDuration = random(min: CGFloat(2.0), max: CGFloat(4.0)) let actualX2 = random(min: 0, max: size.width) let actualY2 = random(min: 0, max: size.height) let actionMove = SKAction.move(to: CGPoint(x: actualX2, y: actualY2), duration: TimeInterval(actualDuration)) let actionMoveDone = SKAction.removeFromParent() neutron.run(SKAction.sequence([actionMove, actionMoveDone])) } }
Posted Last updated
.
Post not yet marked as solved
0 Replies
431 Views
Hello! I'm using SpriteKit for my application, and when I add an SKSpriteNode into the scene it lags and the FPS drops from 60 to 45. To make sure this isn't a code issue, I tested this in an app instead of a playground and it worked fine. Will I get penalized for poor performance or is there a way to solve this issue?Thank you 🙂
Posted
by TheTrollz.
Last updated
.
Post not yet marked as solved
0 Replies
145 Views
I made my AR app project on Xcode swift playground app and it’s successfully work on iPad by debugging but it’s not work when i open .swiftpm file on iPad Pro. So my question is my project can judge on Xcode by debugging on iPad Pro or you will open my zip file directly on iPad Pro I’m confuse. What should I choose in submission Xcode or Swift playground app on iPad pro
Posted Last updated
.
Post not yet marked as solved
0 Replies
241 Views
"Submit any app you have worked on that demonstrates creative use of Apple technologies and runs on an Apple platform."Apart from the given examples, which are fairly new additions to the platforms, are frameworks such as UIKit, Passkit, etc., considered technologies? Would, for example, talking about custom built UI controls be appropriate?Also, is it allowed to provide links to screenshots/videos of the AppStore app in the essay, to prove certain features?Thanks,Sebastian
Posted
by Sebyddd.
Last updated
.