Post

Replies

Boosts

Views

Activity

Reply to Temps d’écran ios18
Yes, if you search these forums you'll see lots of reports of this bug. But the Developer Forums aren't really the right place to raise bugs in a new version of an OS. Apple's engineers aren't reading through these pages to see if anyone's found a bug. These forums are for third-party developers writing apps for Apple's platforms to discuss issues with their code. You need to raise each issue you find separately at https://www.apple.com/feedback/ You can post the FB numbers here if you want, so that others can link to them.
Jul ’24
Reply to iOS 18 Public Beta
The Developer Forums aren't really the right place to raise bugs in a new version of an OS. Apple's engineers aren't reading through these pages waiting to see if anyone's found a bug before they fix it. These forums are for third-party developers writing apps for Apple's platforms to discuss issues with their code. You need to raise each issue you find separately at https://www.apple.com/feedback/ You can post the FB numbers here if you want, so that others can link to them.
Jul ’24
Reply to Freetrade not working
That's a third-party app on an unreleased beta of iOS. There are bound to be issues because the app hasn't been updated for iOS 18 yet. If you want to, you should raise a bug with Freetrade, but we cannot help you here on the Developer Forums.
Jul ’24
Reply to Ignore Screen Time NOT working on IOS 18
Yes, if you search these forums you'll see lots of reports of this bug. But the Developer Forums aren't really the right place to raise bugs in a new version of an OS. Apple's engineers aren't reading through these pages to see if anyone's found a bug. These forums are for third-party developers writing apps for Apple's platforms to discuss issues with their code. You need to raise each issue you find separately at https://www.apple.com/feedback/ You can post the FB numbers here if you want, so that others can link to them.
Jul ’24
Reply to iOS 18 Screen Time Bug
Yes, if you search these forums you'll see lots of reports of this bug. But the Developer Forums aren't really the right place to raise bugs in a new version of an OS. Apple's engineers aren't reading through these pages to see if anyone's found a bug. These forums are for third-party developers writing apps for Apple's platforms to discuss issues with their code. You need to raise each issue you find separately at https://www.apple.com/feedback/ You can post the FB numbers here if you want, so that others can link to them.
Jul ’24
Reply to App review rejected
You aren't actually using In-App Purchases. You're directing the user to a completely separate payment system outside of the App and outside of the App Store. That's why it was rejected. It's one of the rules of the App Store. If you can't use an actual In-App Purchase via Capacitor (whatever that is), then you can't launch this app.
Jul ’24
Reply to Opening screen time freezes up iPhone and lags
Yes, if you search these forums you'll see lots of reports of this bug. But the Developer Forums aren't really the right place to raise bugs in a new version of an OS. Apple's engineers aren't reading through these pages to see if anyone's found a bug. These forums are for third-party developers writing apps for Apple's platforms to discuss issues with their code. You need to raise each issue you find separately at https://www.apple.com/feedback/ You can post the FB numbers here if you want, so that others can link to them.
Jul ’24
Reply to Message app
Your "message app"? Is this an app you've written yourself, or are you talking about the "Messages" app from Apple? If it's your own app, debug it. If it's Apple's Messages app, have you tried turning off iMessage? Settings app > Messages > toggle "iMessage" off, then try the app again. If it works, re-enable iMessage. If that doesn't work, try signing out of iCloud (at the top of the Settings app), and signing back in.
Topic: App & System Services SubTopic: Hardware Tags:
Jul ’24
Reply to Contents of Swift dictionaries and arrays being lost
Have you tried this: (not actual code, but close enough) struct DataObject { var items: [String : Any] } // In some other function somewhere, where you get the JSON data: func getData() -> DataObject { var jsonData = // get your JSON data var jsonDataAsItems = // convert to items, if needed return DataObject(items: jsonDataAsItems) } // Somewhere else: var myItems: DataObject = getData() I've used the struct to say, "this is what the data object looks like," but it's not holding the data itself. The getData() function creates an instance of the struct and returns it. You use the result of that function in another variable - myItems, which should contain the JSON data, as required.
Topic: Programming Languages SubTopic: Swift Tags:
Jul ’24
Reply to Downloaded iOS 18 public beta and all of a sudden I can’t send screen time requests
Yes, if you search these forums you'll see lots of reports of this bug. But the Developer Forums aren't really the right place to raise bugs in a new version of an OS. Apple's engineers aren't reading through these pages to see if anyone's found a bug. These forums are for third-party developers writing apps for Apple's platforms to discuss issues with their code. You need to raise each issue you find separately at https://www.apple.com/feedback/ You can post the FB numbers here if you want, so that others can link to them.
Jul ’24
Reply to iPhone 14 freezes and crashes
You haven't said which version of iOS you updated to. Besides, these are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. These forums are not where Apple's actual developers chat about product issues. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
Jul ’24