Search results for

“iPhone 16 pro”

80,726 results found

Post

Replies

Boosts

Views

Activity

Reply to Apps stuck in "Waiting for Review" for 23 days due to pending agreements. What happens now?
is it better to Remove from Review and resubmit them? (I am afraid of losing my place in the queue) I advise you not to do so. I experienced issue doing this one time and being really stuck until some support helped clean everything. And yes, you may loose your place in the queue. Since the agreements are now active, will my apps automatically fall into the review queue, or do I need to trigger something? If nothings happens in the next 2 days (after the week end), you should contact support. Preferably ask for a phone contact.
Mar ’26
Reply to Unable to process your request
If your you address does not match with Region, it will not work. Also at least one Phone Number from that region must be assigned to the account and also added to the MFA (2-factor authentication). This means you must authenticate they phone number twice. So make sure you the region you want to create the developer account for, matches with address and phone numbers. You can have other phone numbers as well on the account from other regions, but one must be a matching one.
Mar ’26
Reply to macOS system autocomplete cannot be disabled on via standard HTML attributes
On macOS, the behavior of system-level autocomplete suggestions in elements can indeed be frustrating for developers who wish to have full control over this feature. This behavior is primarily controlled by the operating system and the browser, rather than being fully customizable through standard HTML attributes or JavaScript APIs. Here are some insights and potential workarounds: Intentional Behavior User Experience: Apple designs macOS to enhance user convenience by offering autocomplete suggestions for common inputs, such as email addresses, phone numbers, and verification codes. This is intended to streamline user interactions and reduce typing effort. Security and Privacy: By controlling autocomplete at the system level, Apple aims to protect user privacy and security, ensuring that sensitive information is not automatically filled in without explicit user consent. Limitations of HTML Attributes Standard Attributes: Attributes like autocomplete=off, autocorrect=off, autocapitalize=off, and spel
Topic: Safari & Web SubTopic: General
Mar ’26
Unable to load a quantized Qwen 1.7B model on an iPhone SE 3
I am trying to benchmark and see if the Qwen3 1.7B model can run in an iPhone SE 3 [4 GB RAM]. My core problem is - Even with weight quantization the SE 3 is not able to load into memory. What I've tried: I am converting a Torch model to the Core ML format using coremltools. I have tried the following combinations of quantization and context length 8 bit + 1024 8 bit + 2048 4 bit + 1024 4 bit + 2048 All the above quantizations are done with dynamic shape with the default being [1,1] in the hope that the whole context length does not get allocated in memory The 4-bit model is approximately 865MB on disk The 8-bit model is approximately 1.7 GB on disk During load: With the int4 quantization the memory spikes during intitial load a lot. Could this be because many operations are converted to int8 or fp16 as core ML does not perform operations natively on int4? With int8 on the profiler the memory does not go above 2 GB (only 900 MB) but it is still not able to load as it shows the following error. 2GB is
2
0
230
Mar ’26
MusicKit - ApplicationMusicPlayer fails to play certain Songs
[Note: this issue was happening on a main testing device, and after testing the same code on other devices, this issue is only happening on 1 out of 4 devices] We are successfully getting a MusicCatalogResourceResponse for every song ID where we make the MusicCatalogResourceRequest. We are able to display the song title, artist name, and album artwork for each Song in the response. However - when we go to play the song, there are some songs that play, and several songs that do not play. For the songs that don't play, the console shows “Failed to prepareToPlay error=” let musicPlayer = ApplicationMusicPlayer.shared func playSong(_ song: Song) { musicPlayer.queue = [song] Task { try await musicPlayer.prepareToPlay() try await musicPlayer.play() } Is there anything else we can investigate about what may be causing specific song IDs not to play on this specific device? Even if we remove line 6 musicPlayer.prepareToPlay() we still see the same console error when running playSong with the Songs that don't work. It
2
0
208
Mar ’26
Reply to Cannot Add Claude Account to Xcode
I selected Opus and Sonnet. Is Sonnet 'better' for coding? Maybe leaving it at Default is best. It seems logging into Anthropic requires a paid account. Using a 'free' API lets you use the models for free, for now? Codex with a 'pay as you go' account is very capable but I'd like to use Claude going forward. I'm more of a hobby coder at this point and the Pro account is 'big' step up. ;-) maybe I should start charging for my apps. Hopefully I'll get a good feel for Claude in it's current configuration and can accept the value added of the paid account. [Just one more subscription]
Feb ’26
Reply to WiFi not working since build 25E5218f
Same problem. Since the update I can't get Firefox or Chrome to work, neither with WiFi nor via personal hotspot of my phone. Safari is working, but not fast. I left the Beta program because of this, but apparently there is no way to switch to the not-beta variant until there is a new version, which might be in a month?
Topic: Community SubTopic: Apple Developers Tags:
Feb ’26
Draw An Outline Around a Model Entity
Hi, Is there a resource or sample code about how to draw an outline around a mesh in RealityKit? Typically, this is useful for visualizing a selection, like in Reality Composer Pro. How to achieve such effect? A shader material? A post-process effect in ARView or RealityRenderer? Methods such as duplicating the entity mesh, scaling it, and using material.faceCulling = .front did not look good in my experiments. Thank you.
1
0
528
Feb ’26
The Iphone 17 series wifi disconnect innormal
I use Iphone 17 wifi to test the device and mobile phone communicate,but I found the wifi disconnect innormal in hign frequency. This situation is only appears in iphone 17 series, iphone 14 and 15 is ok, so I think iphone 17 wifi chip or software has bugs. the local network disconnect in hign frequency.
5
0
129
Feb ’26
Reply to iOS26.2 webview use websocket cause net lose
Encountering a network issue in WKWebView on iPhone 15 models with iOS 16.2, particularly under conditions of frequent large WebSocket data packets, is indeed unusual and concerning. This issue seems to affect the entire network stack for the app, which points to a deeper problem possibly related to resource exhaustion or a bug in handling network resources. Here are some steps and considerations to help diagnose and potentially resolve this issue: Diagnostic Steps Monitor Resource Usage: Use Instruments on macOS to monitor the app’s resource usage, especially focusing on CPU, memory, and network activity when the issue occurs. Look for spikes or anomalies that could indicate resource exhaustion. Check for Leaks: Ensure there are no memory leaks in your WebView handling code. Leaks can gradually consume resources, leading to instability. Instruments can also help identify memory leaks. Network Activity Logging: Log network activity to understand what happens when connections time out. Use URLSession’
Topic: Safari & Web SubTopic: General
Feb ’26
iOS26.2 webview use websocket cause net lose
I found that on iPhone 15 and later models, after upgrading to iOS 16.2, if a WKWebView's HTML page frequently receives large WebSocket data packets, it may trigger a rare bug: the already loaded WebView page can no longer establish network connections. Both HTTPS and WebSocket connections time out, and the network in the entire app becomes unusable. Even creating a new WebView instance to load a new page fails—it stays blank. Reloading a previously loaded WebView also results in a blank screen. (call [webview reload])Currently, the only solution when this happens is to restart the app. Reproduction environment: iPhone 15 and later models, iOS 26.2, cellular data (not reproducible on Wi-Fi) Log situation: When the blank screen occurs, the webViewWebContentProcessDidTerminate callback is not triggered. When creating a new webview instance and reloading a page during reproduction, only the didStartProvisionalNavigation callback is triggered, and no failure callbacks in Navigation are triggered
Topic: Safari & Web SubTopic: General
1
0
446
Feb ’26
A blank keyboard appear in safari view controller
A blank keyboard appear in safari view controller Description: While clicking a password enter field in a page inside a safari view controller, keyboard will appear. However, the keyboard is blank out. The app is enterprise program app which is iPhone app but allow to install in iPad. The issue will only appear in iPadOS 26+ and it can be temporary fixed by changing the window size. Expected result: A keyboard with characters button should be appeared. Actual: A keyboard which is blank and no characters can be input. P.S. : A feedback ticket also raise : FB21921438
1
0
157
Feb ’26
Reply to Apple Developer Program membership still not active after payment (3 weeks)
Yeah so.... What's going on with this? Because I really don't like paying for a service that has an expiration date and not being able to use the service. Feels like a pro-rated kind of situation. Apple what's going on? I can't even find a way to contact your support for billing inquiries. How is that OK?
Replies
Boosts
Views
Activity
Mar ’26
Reply to Apps stuck in "Waiting for Review" for 23 days due to pending agreements. What happens now?
is it better to Remove from Review and resubmit them? (I am afraid of losing my place in the queue) I advise you not to do so. I experienced issue doing this one time and being really stuck until some support helped clean everything. And yes, you may loose your place in the queue. Since the agreements are now active, will my apps automatically fall into the review queue, or do I need to trigger something? If nothings happens in the next 2 days (after the week end), you should contact support. Preferably ask for a phone contact.
Replies
Boosts
Views
Activity
Mar ’26
Reply to Unable to process your request
If your you address does not match with Region, it will not work. Also at least one Phone Number from that region must be assigned to the account and also added to the MFA (2-factor authentication). This means you must authenticate they phone number twice. So make sure you the region you want to create the developer account for, matches with address and phone numbers. You can have other phone numbers as well on the account from other regions, but one must be a matching one.
Replies
Boosts
Views
Activity
Mar ’26
Reply to macOS system autocomplete cannot be disabled on via standard HTML attributes
On macOS, the behavior of system-level autocomplete suggestions in elements can indeed be frustrating for developers who wish to have full control over this feature. This behavior is primarily controlled by the operating system and the browser, rather than being fully customizable through standard HTML attributes or JavaScript APIs. Here are some insights and potential workarounds: Intentional Behavior User Experience: Apple designs macOS to enhance user convenience by offering autocomplete suggestions for common inputs, such as email addresses, phone numbers, and verification codes. This is intended to streamline user interactions and reduce typing effort. Security and Privacy: By controlling autocomplete at the system level, Apple aims to protect user privacy and security, ensuring that sensitive information is not automatically filled in without explicit user consent. Limitations of HTML Attributes Standard Attributes: Attributes like autocomplete=off, autocorrect=off, autocapitalize=off, and spel
Topic: Safari & Web SubTopic: General
Replies
Boosts
Views
Activity
Mar ’26
Unable to load a quantized Qwen 1.7B model on an iPhone SE 3
I am trying to benchmark and see if the Qwen3 1.7B model can run in an iPhone SE 3 [4 GB RAM]. My core problem is - Even with weight quantization the SE 3 is not able to load into memory. What I've tried: I am converting a Torch model to the Core ML format using coremltools. I have tried the following combinations of quantization and context length 8 bit + 1024 8 bit + 2048 4 bit + 1024 4 bit + 2048 All the above quantizations are done with dynamic shape with the default being [1,1] in the hope that the whole context length does not get allocated in memory The 4-bit model is approximately 865MB on disk The 8-bit model is approximately 1.7 GB on disk During load: With the int4 quantization the memory spikes during intitial load a lot. Could this be because many operations are converted to int8 or fp16 as core ML does not perform operations natively on int4? With int8 on the profiler the memory does not go above 2 GB (only 900 MB) but it is still not able to load as it shows the following error. 2GB is
Replies
2
Boosts
0
Views
230
Activity
Mar ’26
MusicKit - ApplicationMusicPlayer fails to play certain Songs
[Note: this issue was happening on a main testing device, and after testing the same code on other devices, this issue is only happening on 1 out of 4 devices] We are successfully getting a MusicCatalogResourceResponse for every song ID where we make the MusicCatalogResourceRequest. We are able to display the song title, artist name, and album artwork for each Song in the response. However - when we go to play the song, there are some songs that play, and several songs that do not play. For the songs that don't play, the console shows “Failed to prepareToPlay error=” let musicPlayer = ApplicationMusicPlayer.shared func playSong(_ song: Song) { musicPlayer.queue = [song] Task { try await musicPlayer.prepareToPlay() try await musicPlayer.play() } Is there anything else we can investigate about what may be causing specific song IDs not to play on this specific device? Even if we remove line 6 musicPlayer.prepareToPlay() we still see the same console error when running playSong with the Songs that don't work. It
Replies
2
Boosts
0
Views
208
Activity
Mar ’26
Cannot Add Claude Account to Xcode
I keep getting a fails to open page message when I try to sign in using my Claude ai Pro account. The request was for an http url instead of an https url.
Replies
7
Boosts
0
Views
143
Activity
Feb ’26
Reply to Cannot Add Claude Account to Xcode
I selected Opus and Sonnet. Is Sonnet 'better' for coding? Maybe leaving it at Default is best. It seems logging into Anthropic requires a paid account. Using a 'free' API lets you use the models for free, for now? Codex with a 'pay as you go' account is very capable but I'd like to use Claude going forward. I'm more of a hobby coder at this point and the Pro account is 'big' step up. ;-) maybe I should start charging for my apps. Hopefully I'll get a good feel for Claude in it's current configuration and can accept the value added of the paid account. [Just one more subscription]
Replies
Boosts
Views
Activity
Feb ’26
Reply to WiFi not working since build 25E5218f
Same problem. Since the update I can't get Firefox or Chrome to work, neither with WiFi nor via personal hotspot of my phone. Safari is working, but not fast. I left the Beta program because of this, but apparently there is no way to switch to the not-beta variant until there is a new version, which might be in a month?
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Feb ’26
Draw An Outline Around a Model Entity
Hi, Is there a resource or sample code about how to draw an outline around a mesh in RealityKit? Typically, this is useful for visualizing a selection, like in Reality Composer Pro. How to achieve such effect? A shader material? A post-process effect in ARView or RealityRenderer? Methods such as duplicating the entity mesh, scaling it, and using material.faceCulling = .front did not look good in my experiments. Thank you.
Replies
1
Boosts
0
Views
528
Activity
Feb ’26
Reply to CoreBluetooth multi-peripheral high-frequency BLE streaming shows uneven packet distribution and lag on some A16/A17 iPads
Hello, we are experiencing a similiar issues on different Apple devices (iPhones and iPads). Was there any solution to this problem?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’26
The Iphone 17 series wifi disconnect innormal
I use Iphone 17 wifi to test the device and mobile phone communicate,but I found the wifi disconnect innormal in hign frequency. This situation is only appears in iphone 17 series, iphone 14 and 15 is ok, so I think iphone 17 wifi chip or software has bugs. the local network disconnect in hign frequency.
Replies
5
Boosts
0
Views
129
Activity
Feb ’26
Reply to iOS26.2 webview use websocket cause net lose
Encountering a network issue in WKWebView on iPhone 15 models with iOS 16.2, particularly under conditions of frequent large WebSocket data packets, is indeed unusual and concerning. This issue seems to affect the entire network stack for the app, which points to a deeper problem possibly related to resource exhaustion or a bug in handling network resources. Here are some steps and considerations to help diagnose and potentially resolve this issue: Diagnostic Steps Monitor Resource Usage: Use Instruments on macOS to monitor the app’s resource usage, especially focusing on CPU, memory, and network activity when the issue occurs. Look for spikes or anomalies that could indicate resource exhaustion. Check for Leaks: Ensure there are no memory leaks in your WebView handling code. Leaks can gradually consume resources, leading to instability. Instruments can also help identify memory leaks. Network Activity Logging: Log network activity to understand what happens when connections time out. Use URLSession’
Topic: Safari & Web SubTopic: General
Replies
Boosts
Views
Activity
Feb ’26
iOS26.2 webview use websocket cause net lose
I found that on iPhone 15 and later models, after upgrading to iOS 16.2, if a WKWebView's HTML page frequently receives large WebSocket data packets, it may trigger a rare bug: the already loaded WebView page can no longer establish network connections. Both HTTPS and WebSocket connections time out, and the network in the entire app becomes unusable. Even creating a new WebView instance to load a new page fails—it stays blank. Reloading a previously loaded WebView also results in a blank screen. (call [webview reload])Currently, the only solution when this happens is to restart the app. Reproduction environment: iPhone 15 and later models, iOS 26.2, cellular data (not reproducible on Wi-Fi) Log situation: When the blank screen occurs, the webViewWebContentProcessDidTerminate callback is not triggered. When creating a new webview instance and reloading a page during reproduction, only the didStartProvisionalNavigation callback is triggered, and no failure callbacks in Navigation are triggered
Topic: Safari & Web SubTopic: General
Replies
1
Boosts
0
Views
446
Activity
Feb ’26
A blank keyboard appear in safari view controller
A blank keyboard appear in safari view controller Description: While clicking a password enter field in a page inside a safari view controller, keyboard will appear. However, the keyboard is blank out. The app is enterprise program app which is iPhone app but allow to install in iPad. The issue will only appear in iPadOS 26+ and it can be temporary fixed by changing the window size. Expected result: A keyboard with characters button should be appeared. Actual: A keyboard which is blank and no characters can be input. P.S. : A feedback ticket also raise : FB21921438
Replies
1
Boosts
0
Views
157
Activity
Feb ’26