is there any change in application background to foreground transition,as we are facing issue of broken connection for latest iOS 18.3?
This is a dedicated space for developers to connect, share ideas, collaborate, and ask questions. Introduce yourself, network with other developers, and join us in fostering a supportive community.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Officially I was tiredness after was I’m install of ios 18.5 after I got error red logo. And now she stop updating and was I very shocked more. “I searched or hell is this” they don’t know results from this iPhone 11 is jailbroken Yup is my iPhone 11 is jailbroken how we gonna do. Tell me is this real?
Topic:
Community
SubTopic:
Apple Developers
Is there a way to check whether third-party code can be inserted into parts of the ARM CPU architecture from outside? I have the paranoid impression that my MacBook Pro, M2 processor is being manipulated from outside. For example: Safari, when opened, displays pages scaled down without my conscious intervention, when clicked on the original size it scales back to normal for a short time and then implodes again; I use the navigation bar on the left excessively, it is my most important tool in Safari, today it was impossible to insert a link using drag & drop, the bar scrolls up or down very quickly; a behavior that I only know from Intel processors. For example, notes, I encrypted an important note, no problem even though photos and links are inserted, yesterday I could no longer open the note, neither on the MacBook Pro nor on the iPhone. When opening the notes app in the terminal on the MacBook Pro, an EXEC_CRASH report was generated. I have a terrible suspicion that the Apple branch in Munich is tampering with the devices and software of users in Germany. Sorry, I'm a big fan of Apple and its products, but this is very spooky. I just wanted to share my distrust with you!
Topic:
Community
SubTopic:
Apple Developers
It works if Bluetooth is on for a long time, is there any problem?
I'm developing an app using beacon and Bluetooth, and I have to operate the app in the background, and after spending the weekend, I have to detect the beacon and revive the app. I can see that there is an app in the background, but the app is not coming back to life.
How can I solve this problem?
Or is the OS team working on something to block it?
The test model is Iphone16Plus.
Topic:
Community
SubTopic:
Apple Developers
My mail app keeps crashing? Can Anyone help?
I'm using Mac OS Ventura 13.7.5 - updated yesterday and having this issue ever since:
Translated Report (Full Report Below)
Process: Mail [924]
Path: /System/Applications/Mail.app/Contents/MacOS/Mail
Identifier: com.apple.mail
Version: 16.0 (3731.700.6.1.10)
Build Info: Mail_App-3731700006001010~2
Code Type: X86-64 (Native)
Parent Process: launchd [1]
User ID: 502
Date/Time: 2025-03-31 23:17:55.8952 +0100
OS Version: macOS 13.7.5 (22H527)
Report Version: 12
Anonymous UUID: 2B9E5AC3-9B82-567C-8B10-A0555BEEE9BC
Time Awake Since Boot: 990 seconds
System Integrity Protection: enabled
Crashed Thread: 3 Dispatch queue: MCTaskHandler queue (QOS: BACKGROUND)
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Termination Reason: Namespace SIGNAL, Code 6 Abort trap: 6
Terminating Process: Mail [924]
Application Specific Information:
abort() called
Topic:
Community
SubTopic:
Apple Developers
i can’t turn off autofill of an input field from background noise
Why spinner is not showing while downloading dynamic data.
User can select multiple time Choose and most up to date data is not showing.
Below methods are never get called?
optional func handle(intent:
optional func confirm(intent:
only:
provideDeviceOptionsCollection(for intent:
In the actual development, I found that I could not complete the setting of my icloud+ customised email domain name SMTP.
I tried to configure the SMTP of iCloud custom email according to Apple's document (https://support.apple.com/en-us/102525) but the error
I looked through Apple's support file, but I didn't find the specific configuration of iCloud + customised email SMTP.
I am trying to open items saved to my files and keep receiving this notification every time I do so, “The operation couldn't be completed. (NSFileProvider-
ErrorDomain error -2005.)” What does this mean and how do I fix it? I have a 256 gb phone so I know storage is not an issue. Please help as I have files saved to my phone and not anywhere else.
Hello,
We are developing a social media application that allows users to share and view content in the form of images and videos. The app is built with Angular and Ionic, and we use Capacitor to integrate native functionalities.
Currently, we are experiencing an issue with content loading on iOS devices. Specifically, when the iPhone is connected to Wi-Fi, videos load quickly and play smoothly. However, when using mobile data, videos take a long time to load or, in some cases, do not load at all.
We are trying to identify the cause of the issue and determine whether it could be related to Xcode configuration or any system restrictions. Some potential reasons we have considered include:
iOS Mobile Data Usage Restrictions
iOS may limit mobile data usage for large downloads or streaming content if the app does not have the proper permissions.
In Settings > Mobile Data, users can restrict data usage for specific apps.
App Transport Security (ATS) Configuration
Xcode and iOS enforce strict security policies for network connections through App Transport Security (ATS).
If the API serving the videos uses HTTP instead of HTTPS or has restrictive headers, this could affect loading over mobile networks.
Xcode Network Usage Settings
Xcode allows configurations related to network access. There might be a setting limiting access to mobile networks when the device is not on Wi-Fi.
Video Quality and Adaptability Differences
If videos are not optimized for mobile networks (e.g., high-quality formats without adaptive versions), loading times could be significantly longer.
Implementing HLS (HTTP Live Streaming) could improve playback on slower networks.
Request Timeout Issues
If video loading requests have a short timeout, slower mobile network connections might exceed this limit, causing the request to fail.
Compression and Caching
It is essential to check if videos are properly compressed and if caching is implemented to improve performance on mobile networks.
Given this situation, we would like to know what Xcode settings might be affecting video loading performance on mobile data and how we can adjust them to enhance the user experience.
Topic:
Community
SubTopic:
Apple Developers
我们App的搜索功能,以前使用系统键盘进行输入中文搜索时,只有当输入完整,点击键盘上的对应词后,才会开始搜索, 现在没按下一个字母,就会触发搜索。
Topic:
Community
SubTopic:
Apple Developers
i am using this code
public static bool CheckForForceUpdate()
{
try
{
Version latestVersion = new(GetLatestVersion());
Version currentVersion = new(AppInfo.VersionString);
if (latestVersion != null && currentVersion < latestVersion)
{
NSUserDefaults.StandardUserDefaults.SetBool(true, StorageKey.IsForceUpdate);
return true;
}
else
{
NSUserDefaults.StandardUserDefaults.SetBool(false, StorageKey.IsForceUpdate);
return false;
}
}
catch (Exception ex)
{
Console.WriteLine("CheckForForceUpdate....." + ex.Message);
return false;
}
}
public static string GetLatestVersion()
{
try
{
string appId = "1586153397"; // Replace with your App Store app ID
string url = $"https://itunes.apple.com/lookup?id={appId}";
using (HttpClient client = new HttpClient())
{
var response = client.GetStringAsync(url).GetAwaiter().GetResult();
var json = JObject.Parse(response);
var latestVersion = json["results"]?[0]?["version"]?.ToString();
return latestVersion;
}
}
catch (Exception ex)
{
Console.WriteLine("GetLatestVersion..." + ex.Message);
return null;
}
}
The value of latestVersion should 2.1 in my production app i am not able to get this
hence i am not able to achieve Force Update functionality
Topic:
Community
SubTopic:
Apple Developers
After connecting to a Passpoint network on macOS, the SSID field is displayed as empty.
Bugs ?
Passpoint connections are established and function correctly, with network communication unimpeded. However, a display issue where the SSID field is blank is present on macOS versions 13 through 15 inclusive. This issue persists even when utilizing connection profiles created with Apple Configurator.
Help me. Thks
Topic:
Community
SubTopic:
Apple Developers
I have encountered a problem that the Apple Watch cannot automatically continue playing the music in my playlist even if I have press the cycle button. It stops every song. And I used Apple Music. All these are performed without iPhone. But after restarted the watch, it works fine. I use S10 GPS watch with watch os 11.3.1. I never restarted the watch after I renewed the system. And i believe the problem have existed for more than one year as i saw a post describe the same problem on social media.
I launched Amazon Prime and bricked my IPad all reset options have failed, any one have some thought?
Topic:
Community
SubTopic:
Apple Developers
Hi,
I have an iPhone 15 Pro Max, model A2849, which according to Apple’s official specifications, supports eSIM.
However, in the settings, there is no visible option to add an eSIM (see attached screenshot).
There is no “Add Cellular Plan” or any other eSIM-related menu.
I’ve already checked for software updates, restarted the device, and reset the network settings, but the issue remains.
Has anyone experienced this issue or knows how to fix it?
Thanks in advance for your help!
Topic:
Community
SubTopic:
Apple Developers
Hello Apple Developers,
I am experiencing an issue where USB audio input (e.g., external USB microphone) is blocked when using AirPlay screen mirroring from my iPhone to a Mac or Apple TV. However, the built-in microphone continues to work without any problem.
Issue Details:
I am using an iPhone 15 (or latest device) running iOS [your iOS version].
I connect a USB audio interface/microphone via a USB-C adapter or Lightning adapter.
The USB microphone works perfectly for audio input before starting AirPlay.
The moment I enable AirPlay screen mirroring, the USB microphone stops working, and it disappears from available audio input sources.
The built-in microphone continues to function, but I cannot use the USB microphone while mirroring.
When I stop screen mirroring, the USB microphone immediately becomes available again.
Expected Behavior:
I would expect iOS to allow me to continue using an external USB microphone while mirroring my screen, just like it allows the built-in microphone to work.
Questions:
Is this an intentional restriction in iOS?
Is there any workaround to enable USB audio input while using AirPlay screen mirroring?
Is there a way to request a feature or configuration option to allow external USB microphones during AirPlay?
I appreciate any insights or guidance from the Apple team or fellow developers. Thanks in advance!
Best regards,
Installed update on Monday night and since then keep losing Network connection despite resettting Network connections and iphone.
Comes back for a short time after rsetting then is lost with nothing showing under Mobile Service.
Topic:
Community
SubTopic:
Apple Developers
I just downloaded ios 26 atm i was upgrading my phone battery was 50% and charging , now when i fully installated ios 26 it shows battery 1% and even i try to charge it still stays at 1% any idea how to fix it
Topic:
Community
SubTopic:
Apple Developers
I encountered some issues while developing a Vision Pro program using Unity. After binding an ARAnchor to a game object, I overlapped the virtual game object with a real-world cup. However, when I moved around with the Vision Pro on, the virtual game object shifted, causing the real-world cup and the virtual object to no longer coincide. Is there a way to solve this?