Posts

Post not yet marked as solved
1 Replies
1.1k Views
Hi! I have just applied to the random selection to attend WWDC23 with my current account I use to submit my app to the App Store and that is enrolled in the Apple Developer Program. Just shortly ago however, I received an email on my other Apple ID notifying me that I was eligible to enter the random selection on this other account because I had won the Swift Student Challenge in 2020 and 2021 with it. So I have a few questions: First being, will I be disadvantaged or disqualified if I enter the random selection on both accounts? If so, should I remove my current developer account from the random selection and use the one where I won the Swift Student Challenge instead? Or keep it as is? Will certain things that make you eligible to enter in the first place have more of a "weight" in the selection process and make you more likely to be selected? Like if you are part of the dev program, an enterprise, won student challenge etc.? Thank you :)
Posted
by Priva28.
Last updated
.
Post not yet marked as solved
1 Replies
623 Views
Hello! I'm really hoping that there's someone here that can help me as developer support over the phone has failed miserably in helping me with anything whatsoever. I requested a name change on my developer account and haven't heard anything in over 2 weeks. I would like an estimation on how long this process usually takes, but phone support refuse to give it to me. The "senior advisor" says it is in the hands of the operations team and there is nothing that can happen. Well is there a way to get into direct contact with the "operations team" or someone who does have contact with them? It seems unlikely that any of these requests just go into some black hole where they will never be found again, and there has to be a way to get some information. It honestly seems ridiculous and kind of insulting as a young developer who pays $160 per year out of my own money. So I'm hoping there is someone here who can maybe connect me with the right people to get some proper help? If it helps, the person I've been dealing with who has refused to check on the case for me is "Charlie", and supposedly there isn't anyone above him who could help (which I find incredibly hard to believe). Maybe another person had to go through the same thing as me and has some tips on what to do here?
Posted
by Priva28.
Last updated
.
Post marked as solved
8 Replies
9.6k Views
My app has to find a certain bonjour service on the local network and my code works fine for iOS 12/13 as well as macOS Big Sur and Catalina. The exact same code fails on iOS and iPadOS 14 with this error: ["NSNetServicesErrorDomain": 10, "NSNetServicesErrorCode": -72000] Which I have looked into and -72000 is an "Unknown error". I am using NetServiceBrowser to find the service and here is my code: class Bonjour: NSObject {     var discovered: [DiscoveredInstance] = []     let bonjourBrowser = NetServiceBrowser()     var discoveredService: NetService?     override init() {         super.init()         bonjourBrowser.delegate = self         startDiscovery()     }     func startDiscovery() {         self.bonjourBrowser.searchForServices(ofType: "_some-service._tcp.", inDomain: "local")     } } extension Bonjour: NetServiceBrowserDelegate, NetServiceDelegate {     func netServiceBrowser(_ browser: NetServiceBrowser, didFind service: NetService, moreComing: Bool) {         discoveredService = service         discoveredService?.delegate = self         discoveredService?.resolve(withTimeout: 3)     }     func netServiceBrowser(_ browser: NetServiceBrowser, didNotSearch errorDict: [String : NSNumber]) {         print(errorDict)     }     func netServiceBrowser(_ browser: NetServiceBrowser, didRemove service: NetService, moreComing: Bool) {         self.discovered.removeAll { $0.name == service.name }     }     func netServiceDidResolveAddress(_ sender: NetService) {         if let data = sender.txtRecordData() {             let dict = NetService.dictionary(fromTXTRecord: data)             /// do stuff with txtRecord dict here and then add to discovered array.             discoveredService = nil         }     } } I have no idea what could be causing the error and have tried enabling networking permissions and capabilities but have not been able to stop the error from occurring. Thanks.
Posted
by Priva28.
Last updated
.
Post not yet marked as solved
2 Replies
968 Views
I have an iPad Pro running the iOS 14.5 beta but the Swift Student Challenge page says that I must be running iOS 14.4.2. Will I be ineligible if I create it on 14.5? I would downgrade but Apple has made it impossible to downgrade from 14.5 to 14.4 versions. What should I do in this instance?
Posted
by Priva28.
Last updated
.
Post marked as solved
7 Replies
1.6k Views
In Xcode, I am not able to save changes to my .scn file. When editing any component inside the scene file or even changing its name I will get an error saying that the file could not be saved. I have tried restarting my Mac and Xcode multiple times as well as changing permissions for the file and entire project folder. Even moving to a new project gives this error. Nothing has worked though. Also creating a blank scene file and adding a cube doesn't even work so it's not a problem with my file. How can I make changes to a .scn file and have it actually save?
Posted
by Priva28.
Last updated
.