Apple Developers

RSS for tag

This 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.

Learn More

Posts under Apple Developers subtopic

Post

Replies

Boosts

Views

Activity

Apple Home missing Wind/Rock Mode controls for Matter Tower Fan
Hi Apple Home Team, We are integrating a Matter-enabled Tower Fan with Apple Home and have observed that the current Apple Home UI does not expose all the capabilities defined by the Matter Fan Control cluster. Wind Mode Our device supports the following WindMode values: Normal Natural Sleep However, Apple Home does not provide any UI to view or control the Natural and Sleep wind modes. Only the basic fan controls are available. Rock Mode (Oscillation Direction) Our device also supports the following RockMode values: Off Left-Right Up-Down In Apple Home, we only see a single Oscillation toggle (On/Off). There is no option to select the oscillation direction (e.g., Left-Right or Up-Down). Could you please clarify: Does Apple Home currently support the Matter WindMode attribute of the Fan Control cluster? Is the current On/Off Oscillation control the expected behavior for devices that support multiple RockMode directions? What is the recommended approach for Matter devices that implement multiple RockMode values (e.g., Left-Right and Up-Down)? Are there any plans to add native UI support for Wind Mode and Rock Mode direction selection in a future Apple Home release? Thank you for your support. We look forward to your guidance on the recommended implementation for Apple Home. Thanks, Chintan Patel
3
0
161
6d
Need help of a fellow tester
Hey all, I have been suffering from obesity for a long time, and I recently built an agent to help me manage my weight. The results for me have been great, to say the least. I started at 125kg, 180cm 3 months back. After 90 days, I am at 110.7kg only by making micro-adjustments to what I eat and following the AI assistant's guidance. Hence, I made it an app experience and would love it if someone could help me with testing. I can help them test their apps in return
2
0
85
6d
Sky-grid Protocol Why .pnpk?
I am opening PNPK, an integrated SKYGRID transaction-safety architecture, for technical review. The design introduces two AWS-backed workflows: POST /pnpk/intake Receives a structured transaction and evidence record containing elements such as a network identifier, transaction hash, wallet address, evidence digest, timestamp, nonce, operator condition, and signature. POST /operator/condition Records an operator safety or recovery condition and connects it to SKYGRID emergency routing and controlled response playbooks. The objective is not to claim automatic reversal of completed blockchain transactions. The objective is to make transaction intent, evidence integrity, chronology, authorization, and recovery conditions independently verifiable. The architecture currently uses: • Amazon API Gateway • AWS Lambda • Amazon EventBridge • Amazon DynamoDB • replay and idempotency controls • fail-closed processing I would especially value feedback on the threat model, signature envelope, replay protection, evidence-digest format, chain-neutral identifiers, and safe handling of recovery metadata. No PNPK payload should contain a seed phrase or plaintext private key. #aws #security #web3 #serverless #cybersecurity
0
0
61
6d
iPhone not charging via cable, only Magsafe
The iPhone randomly stopped drawing any power from the power brick, happened yesterday after a walk. Came home, plugged it in and over an hour instead of charging the phones battery percentage decreased to 20% from 30%. I was no where near any liquids that could have possibly damaged the port. Currently, in a country that doesn't have any official apple stores/repair centers, however, went to some local ones. They say that the problem is with the IC block and ask me to pay $200 for it. Quiet hesitant to do so, frankly speaking. Did anyone experience this before or have any suggestions? Thanks! Running IOS 27.3
3
0
211
1w
20 Years of iPhone Ultimate Feature
Can anyone tell me, what would it take for the next year's iPhone to have a mini HDMI and allow owners of the flagship plug it into a Monitor and then install Xcode? This would jut make iPhones the ultimate. How can this feature not be achieved since most of the computing seem to be moving to Cloud AI models anyway? It can have a dual mode. Phone/Computer mode??? Anyone?
0
0
89
1w
Assinei o programa e minha conta continua Pendente/não ativada
Olá, pessoal. Efetuei o pagamento da assinatura do Apple Developer Program no dia 07 de julho de 2026, mas minha conta continua com o status "Pendente" e não foi ativada até agora. O site informa que o processamento pode levar até 48 horas, porém já se passaram vários dias sem nenhuma atualização. Já abri chamados com o Suporte (casos 102937443413 e 102939351464), mas ainda não obtive uma solução. Alguém mais está passando por isso ou sabe como acelerar a ativação? Agradeço qualquer orientação.
1
0
134
1w
Can an iOS app automatically send scheduled SMS using the user’s cellular number?
Hello, I’m investigating an appointment-reminder app for small businesses. The user would explicitly enable the feature and authorize specific clients to receive reminders. At a scheduled time, the app would send an SMS using the iPhone owner’s cellular number and carrier plan, without requiring them to open MFMessageComposeViewController and tap Send. I understand that MFMessageComposeViewController requires user confirmation. I also understand that TelephonyMessagingKit is intended for eligible default carrier-messaging apps. Is there any supported API, entitlement, or approved architecture that permits this use case for a regular App Store app? If not, would an appointment app potentially qualify for any TelephonyMessagingKit entitlement, or is using a server-side SMS provider the only supported way to send unattended reminders? The intended messages would only be sent with the business user’s authorization and the recipient’s consent.
0
0
116
1w
Building a Multi-Core Autonomous Software Engineering Runtime
Building a Multi-Core Autonomous Software Engineering Runtime in Swift 6.2 Author: BlackForgedLabs Abstract We are developing a native Swift-based autonomous software engineering runtime that applies deterministic safety, actor isolation, structured concurrency, and layered governance to large-scale automated software development. Rather than treating AI as a monolithic chatbot, our architecture models software engineering as cooperating subsystems with clearly defined responsibilities and explicit safety boundaries. Our goals include: deterministic execution reproducible builds enterprise governance local-first operation strong auditability compile-time safety through Swift’s concurrency model Swift 6.2 has proven to be an excellent foundation for this approach. ⸻ Architectural Principles The runtime is organized as multiple cooperating cores instead of a single agent. Each subsystem owns one responsibility and communicates through typed contracts. Examples include: runtime orchestration memory documentation code indexing governance diagnostics repair planning verification deployment Each subsystem operates independently while remaining isolated through actor boundaries. ⸻ Deterministic Concurrency One of our primary design goals is eliminating hidden mutable state. Every major service is implemented as actors. Shared mutable state is intentionally minimized. Long-running workflows communicate through immutable value types. Swift’s strict concurrency checking has become one of the largest contributors to overall system correctness. ⸻ Safety Before Autonomy Rather than allowing unrestricted automated modification of source code, every proposed action passes through multiple validation stages. Examples include: policy validation approval gates build verification audit recording rollback planning The architecture intentionally separates: Observation ↓ Analysis ↓ Planning ↓ Approval ↓ Execution ↓ Verification Each stage has clearly defined ownership. ⸻ Local-First Enterprise Design Our primary objective is enabling organizations to execute sophisticated development workflows entirely on their own infrastructure. The runtime is designed around: local source repositories local indexing local documentation local policy enforcement local build execution Cloud providers become optional components rather than architectural requirements. ⸻ Documentation as a First-Class System Documentation generation is integrated directly into the engineering workflow rather than treated as an afterthought. The documentation pipeline automatically produces: API references CLI references architecture documentation governance documentation release documentation searchable local indexes This enables developers to query documentation using deterministic local search without requiring embeddings. ⸻ Why Swift? Several Swift features have made this architecture practical: actors Sendable checking structured concurrency Swift Package Manager strong value semantics deterministic compilation cross-platform direction Swift increasingly resembles a systems language while maintaining a high level of developer productivity. ⸻ Areas Where We’d Appreciate Apple Engineering Feedback We’re particularly interested in best practices for: very large Swift package graphs actor performance at enterprise scale incremental compilation strict concurrency patterns memory optimization Swift Package dependency management long-running actor systems compiler diagnostics for large modular architectures ⸻ What We Intentionally Do Not Discuss To protect proprietary work, this overview intentionally omits implementation details related to: orchestration algorithms planning heuristics governance policies commercial architecture security mechanisms repair strategies provider integrations internal runtime implementation The purpose of this discussion is to exchange knowledge about building large-scale systems in Swift rather than disclose proprietary technology.
0
0
135
1w
Can't send support issues.
Hello, Apple Team! My e-mail did not work in January - February 2026. I think after that is become invalid. Please assist to make it valid again. Also AppStore Connect doesn't send e-mails to my account holder e-mail. I have no issues to login using my e-mail on device or apple developer portal. Thanks! Regard, Alex
0
0
93
1w
Cambodia Language bugs
Dear Apple Support Team, I am writing to report a long-standing issue affecting Khmer (Cambodia) text recognition in Live Text and the Vision Framework OCR. Based on my testing, this issue has persisted for more than two years—from iOS 17 through iOS 27 Beta 3—and is also reproducible on iPadOS and macOS. I would appreciate clarification on the following points: Is Apple aware of an issue where Live Text incorrectly recognizes Khmer script as Thai script, causing copied text to output as Thai characters instead of Khmer? Has this issue been officially logged as a bug within the Vision Framework or Live Text teams? Since this behavior has remained reproducible since iOS 17, why has it not yet been resolved? Is the problem caused by automatic language detection, the OCR recognition model, the Vision Framework, or another component of Apple's AI pipeline? Does Apple currently have a dedicated OCR and language recognition model for the Khmer script, or is Khmer being inferred through another language model? Is there an estimated timeline for improving Khmer OCR and preventing Khmer text from being misidentified as Thai? Can Apple confirm whether this issue affects all products using the Vision Framework, including Live Text, Photos Preview, Screenshot OCR, and APIs provided to third-party developers? How can Apple work with the Khmer technology community to improve OCR accuracy and language support for Cambodia? This issue is more than a simple OCR bug. When Khmer text is automatically converted into Thai characters, users lose access to the original text, developers receive incorrect OCR output, and it negatively impacts the digital representation of the Khmer language. For reference, I have documented the issue in detail here: https://app.notion.com/p/Inaccurate-OCR-Language-Inference-Khmer-Script-Misidentified-as-Thai-in-Vision-Framework-2d8a24f4ee6680fcbc49d989f8bb606f I hope Apple will investigate this issue and prioritize improving Khmer language support across the Vision Framework and Live Text. Thank you, Vattanak Khun
1
0
113
1w
My Experiance with Apple (New here!)
Just want to say, I have had no issues with this process. I have read quite a bit on here, alot not great. I submitted some games on Sunday evening, 3-4 days later, reviewed and approved. I read alot of horror stories, so just wanted to say its been great for me. Usually people write complaints, not many with good stories. I am sure I will get some knocked back, but I will cross that road when I come to it! Great it's been and look forward to continuing here. Eric
0
0
85
1w
Unable to continue after Apple Developer Support reset my enrollment.
Hi everyone, I’m trying to enroll in the Apple Developer Program using the Apple Developer app on my MacBook. Originally, my enrollment became stuck before the payment step. Apple Developer Support withdrew my previous enrollment and confirmed that I could enroll again through the Developer app. The app now correctly shows “Enroll Now”, but when I click it, it immediately displays: “Unable to Continue. Contact support.” The error appears immediately, and the enrollment flow never starts—I don’t reach the terms, identity verification, or payment screens. I’ve already: Updated to the latest macOS. Installed the latest Apple Developer app. Verified that iCloud is enabled. Confirmed I’m using the same Apple ID everywhere (I only have one Apple ID). Restarted my Mac and signed out/in again. Tried different internet connections. Apple Developer Support has already reset my enrollment once, but the issue still persists. I’ve also replied to my support case with screenshots showing the problem. Has anyone experienced this after an enrollment reset? If so, what resolved it? Any advice would be greatly appreciated. Thank you!
0
0
101
1w
macOS 27 Beta 1 Install Failure
Hello, I'm unable to install macOS 27 Beta 1 on relatively clean test system - 15" MacBook Air M4 16GB RAM. Error from installer log: Jun 9 09:55:29 COMPUTERNAME osinstallersetupd[11696]: Operation queue failed with error: Error Domain=com.apple.OSInstallerSetup.error Code=1007 "An error occurred preparing the update." UserInfo={NSLocalizedRecoverySuggestion=Failed to personalize the software update. Please try again., NSLocalizedDescription=An error occurred preparing the update., NSUnderlyingError=0xbdbf93f30 {Error Domain=SUMacControllerError Code=7723 "[SUMacControllerErrorPreflightPersonalizeFailed=7723] Failed to perform PreflightPersonalize operation: [MobileSoftwareUpdateErrorDomain(MSU):MSU_ERR_PERSONALIZATION_FAILURE(2)_1_MobileSoftwareUpdateErrorDomain(MSU):MSU_ERR_GLOBAL_TICKET_INVALID(53)]" UserInfo={NSLocalizedDescription=Failed to personalize the software update. Please try again., SUMacControllerErrorIndicationsMask=0, NSDebugDescription=[SUMacControllerErrorPreflightPersonalizeFailed=7723] Failed to perform PreflightPersonalize operation: [MobileSoftwareUpdateErrorDomain(MSU):MSU_ERR_PERSONALIZATION_FAILURE(2)_1_MobileSoftwareUpdateErrorDomain(MSU):MSU_ERR_GLOBAL_TICKET_INVALID(53)], NSUnderlyingError=0xbdbf93b10 {Error Domain=MobileSoftwareUpdateErrorDomain Code=2 "Could not personalize boot/firmware bundle." UserInfo={NSUnderlyingError=0xbdbf93d80 {Error Domain=MobileSoftwareUpdateErrorDomain Code=53 "Global ticket failed to verify" UserInfo=0xbdbfd2be0 (not displayed)}, NSLocalizedDescription=Could not personalize boot/firmware bundle., target_update=26A5353q}}}}} Not sure if anyone else has experienced this error?
10
2
732
1w
[Callkit] Report call end fail
We call reportCall(with:, endedAt:, reason:) to end the call, mostly CXCallObserverDelegate func - (void)callObserver:(CXCallObserver *)callObserver callChanged:(CXCall *)call; will be called immediately with call end event. But sometimes not like this, it will not callback, and after more then 20 seconds, CXProviderDelegate func provider(_ provider: CXProvider, perform action: CXEndCallAction) will be call. It seems not expected, and will cause callkit UI not disappear in a long time. So hy call end event not be call immediately by CXCallObserverDelegate func?
1
0
109
1w
Can't add Wireguard VPN
Im on my MacBook Pro M1 and if I'm trying to load a config then it says read or writing the configuration failed. I looked to the log there is this: 2026-07-07 18:48:09.890 [APP] App version: 1.0.16 (27) 2026-07-07 18:48:21.596 [APP] Add: Saving configuration failed: Error Domain=NEVPNErrorDomain Code=5 "total NetworkExtension configuration size limit exceeded" UserInfo={NSLocalizedDescription=total NetworkExtension configuration size limit exceeded} I went to VPN and there are NO VPN configurations. But in the past I had installed Proton VPN and Express VPN.
1
0
97
1w
Maximize Window Bounceback
Usually I double click the top window bar to maximize or revert back to the position a window was in, need this efficiency and now when double clicking top window bar the window maximizes on display then quickly bounces back to same position. I realize I can press option key above green circle, beyond annoying on all screens and more so on bigger external monitors. once in a while if I double click fast enough with some luck it does what its supposed to (maximize or revert back to original pos wich is usually half or quarter screen). tried a few settings. was guessing something to do with double click speed, don't know. this is beyond annoying and having to waste time on it is also annoying
0
0
129
1w
Apple Home missing Wind/Rock Mode controls for Matter Tower Fan
Hi Apple Home Team, We are integrating a Matter-enabled Tower Fan with Apple Home and have observed that the current Apple Home UI does not expose all the capabilities defined by the Matter Fan Control cluster. Wind Mode Our device supports the following WindMode values: Normal Natural Sleep However, Apple Home does not provide any UI to view or control the Natural and Sleep wind modes. Only the basic fan controls are available. Rock Mode (Oscillation Direction) Our device also supports the following RockMode values: Off Left-Right Up-Down In Apple Home, we only see a single Oscillation toggle (On/Off). There is no option to select the oscillation direction (e.g., Left-Right or Up-Down). Could you please clarify: Does Apple Home currently support the Matter WindMode attribute of the Fan Control cluster? Is the current On/Off Oscillation control the expected behavior for devices that support multiple RockMode directions? What is the recommended approach for Matter devices that implement multiple RockMode values (e.g., Left-Right and Up-Down)? Are there any plans to add native UI support for Wind Mode and Rock Mode direction selection in a future Apple Home release? Thank you for your support. We look forward to your guidance on the recommended implementation for Apple Home. Thanks, Chintan Patel
Replies
3
Boosts
0
Views
161
Activity
6d
Need help of a fellow tester
Hey all, I have been suffering from obesity for a long time, and I recently built an agent to help me manage my weight. The results for me have been great, to say the least. I started at 125kg, 180cm 3 months back. After 90 days, I am at 110.7kg only by making micro-adjustments to what I eat and following the AI assistant's guidance. Hence, I made it an app experience and would love it if someone could help me with testing. I can help them test their apps in return
Replies
2
Boosts
0
Views
85
Activity
6d
Sky-grid Protocol Why .pnpk?
I am opening PNPK, an integrated SKYGRID transaction-safety architecture, for technical review. The design introduces two AWS-backed workflows: POST /pnpk/intake Receives a structured transaction and evidence record containing elements such as a network identifier, transaction hash, wallet address, evidence digest, timestamp, nonce, operator condition, and signature. POST /operator/condition Records an operator safety or recovery condition and connects it to SKYGRID emergency routing and controlled response playbooks. The objective is not to claim automatic reversal of completed blockchain transactions. The objective is to make transaction intent, evidence integrity, chronology, authorization, and recovery conditions independently verifiable. The architecture currently uses: • Amazon API Gateway • AWS Lambda • Amazon EventBridge • Amazon DynamoDB • replay and idempotency controls • fail-closed processing I would especially value feedback on the threat model, signature envelope, replay protection, evidence-digest format, chain-neutral identifiers, and safe handling of recovery metadata. No PNPK payload should contain a seed phrase or plaintext private key. #aws #security #web3 #serverless #cybersecurity
Replies
0
Boosts
0
Views
61
Activity
6d
iPhone not charging via cable, only Magsafe
The iPhone randomly stopped drawing any power from the power brick, happened yesterday after a walk. Came home, plugged it in and over an hour instead of charging the phones battery percentage decreased to 20% from 30%. I was no where near any liquids that could have possibly damaged the port. Currently, in a country that doesn't have any official apple stores/repair centers, however, went to some local ones. They say that the problem is with the IC block and ask me to pay $200 for it. Quiet hesitant to do so, frankly speaking. Did anyone experience this before or have any suggestions? Thanks! Running IOS 27.3
Replies
3
Boosts
0
Views
211
Activity
1w
20 Years of iPhone Ultimate Feature
Can anyone tell me, what would it take for the next year's iPhone to have a mini HDMI and allow owners of the flagship plug it into a Monitor and then install Xcode? This would jut make iPhones the ultimate. How can this feature not be achieved since most of the computing seem to be moving to Cloud AI models anyway? It can have a dual mode. Phone/Computer mode??? Anyone?
Replies
0
Boosts
0
Views
89
Activity
1w
Enrollment Time Frame
Hello, I applied to the Developer Program back in June & still have not heard back. How long does this process usually take? It says 2 business days but it’s been weeks.
Replies
0
Boosts
0
Views
82
Activity
1w
Assinei o programa e minha conta continua Pendente/não ativada
Olá, pessoal. Efetuei o pagamento da assinatura do Apple Developer Program no dia 07 de julho de 2026, mas minha conta continua com o status "Pendente" e não foi ativada até agora. O site informa que o processamento pode levar até 48 horas, porém já se passaram vários dias sem nenhuma atualização. Já abri chamados com o Suporte (casos 102937443413 e 102939351464), mas ainda não obtive uma solução. Alguém mais está passando por isso ou sabe como acelerar a ativação? Agradeço qualquer orientação.
Replies
1
Boosts
0
Views
134
Activity
1w
Can an iOS app automatically send scheduled SMS using the user’s cellular number?
Hello, I’m investigating an appointment-reminder app for small businesses. The user would explicitly enable the feature and authorize specific clients to receive reminders. At a scheduled time, the app would send an SMS using the iPhone owner’s cellular number and carrier plan, without requiring them to open MFMessageComposeViewController and tap Send. I understand that MFMessageComposeViewController requires user confirmation. I also understand that TelephonyMessagingKit is intended for eligible default carrier-messaging apps. Is there any supported API, entitlement, or approved architecture that permits this use case for a regular App Store app? If not, would an appointment app potentially qualify for any TelephonyMessagingKit entitlement, or is using a server-side SMS provider the only supported way to send unattended reminders? The intended messages would only be sent with the business user’s authorization and the recipient’s consent.
Replies
0
Boosts
0
Views
116
Activity
1w
Building a Multi-Core Autonomous Software Engineering Runtime
Building a Multi-Core Autonomous Software Engineering Runtime in Swift 6.2 Author: BlackForgedLabs Abstract We are developing a native Swift-based autonomous software engineering runtime that applies deterministic safety, actor isolation, structured concurrency, and layered governance to large-scale automated software development. Rather than treating AI as a monolithic chatbot, our architecture models software engineering as cooperating subsystems with clearly defined responsibilities and explicit safety boundaries. Our goals include: deterministic execution reproducible builds enterprise governance local-first operation strong auditability compile-time safety through Swift’s concurrency model Swift 6.2 has proven to be an excellent foundation for this approach. ⸻ Architectural Principles The runtime is organized as multiple cooperating cores instead of a single agent. Each subsystem owns one responsibility and communicates through typed contracts. Examples include: runtime orchestration memory documentation code indexing governance diagnostics repair planning verification deployment Each subsystem operates independently while remaining isolated through actor boundaries. ⸻ Deterministic Concurrency One of our primary design goals is eliminating hidden mutable state. Every major service is implemented as actors. Shared mutable state is intentionally minimized. Long-running workflows communicate through immutable value types. Swift’s strict concurrency checking has become one of the largest contributors to overall system correctness. ⸻ Safety Before Autonomy Rather than allowing unrestricted automated modification of source code, every proposed action passes through multiple validation stages. Examples include: policy validation approval gates build verification audit recording rollback planning The architecture intentionally separates: Observation ↓ Analysis ↓ Planning ↓ Approval ↓ Execution ↓ Verification Each stage has clearly defined ownership. ⸻ Local-First Enterprise Design Our primary objective is enabling organizations to execute sophisticated development workflows entirely on their own infrastructure. The runtime is designed around: local source repositories local indexing local documentation local policy enforcement local build execution Cloud providers become optional components rather than architectural requirements. ⸻ Documentation as a First-Class System Documentation generation is integrated directly into the engineering workflow rather than treated as an afterthought. The documentation pipeline automatically produces: API references CLI references architecture documentation governance documentation release documentation searchable local indexes This enables developers to query documentation using deterministic local search without requiring embeddings. ⸻ Why Swift? Several Swift features have made this architecture practical: actors Sendable checking structured concurrency Swift Package Manager strong value semantics deterministic compilation cross-platform direction Swift increasingly resembles a systems language while maintaining a high level of developer productivity. ⸻ Areas Where We’d Appreciate Apple Engineering Feedback We’re particularly interested in best practices for: very large Swift package graphs actor performance at enterprise scale incremental compilation strict concurrency patterns memory optimization Swift Package dependency management long-running actor systems compiler diagnostics for large modular architectures ⸻ What We Intentionally Do Not Discuss To protect proprietary work, this overview intentionally omits implementation details related to: orchestration algorithms planning heuristics governance policies commercial architecture security mechanisms repair strategies provider integrations internal runtime implementation The purpose of this discussion is to exchange knowledge about building large-scale systems in Swift rather than disclose proprietary technology.
Replies
0
Boosts
0
Views
135
Activity
1w
iOS 27 Beta updates are not being rolled out in India
Anyone knows any specific reason for the non-rollout of iOS 27 beta versions in APAC specifically India. i will be much obliged for any illumination from informed community.
Replies
0
Boosts
0
Views
130
Activity
1w
Can't send support issues.
Hello, Apple Team! My e-mail did not work in January - February 2026. I think after that is become invalid. Please assist to make it valid again. Also AppStore Connect doesn't send e-mails to my account holder e-mail. I have no issues to login using my e-mail on device or apple developer portal. Thanks! Regard, Alex
Replies
0
Boosts
0
Views
93
Activity
1w
Cambodia Language bugs
Dear Apple Support Team, I am writing to report a long-standing issue affecting Khmer (Cambodia) text recognition in Live Text and the Vision Framework OCR. Based on my testing, this issue has persisted for more than two years—from iOS 17 through iOS 27 Beta 3—and is also reproducible on iPadOS and macOS. I would appreciate clarification on the following points: Is Apple aware of an issue where Live Text incorrectly recognizes Khmer script as Thai script, causing copied text to output as Thai characters instead of Khmer? Has this issue been officially logged as a bug within the Vision Framework or Live Text teams? Since this behavior has remained reproducible since iOS 17, why has it not yet been resolved? Is the problem caused by automatic language detection, the OCR recognition model, the Vision Framework, or another component of Apple's AI pipeline? Does Apple currently have a dedicated OCR and language recognition model for the Khmer script, or is Khmer being inferred through another language model? Is there an estimated timeline for improving Khmer OCR and preventing Khmer text from being misidentified as Thai? Can Apple confirm whether this issue affects all products using the Vision Framework, including Live Text, Photos Preview, Screenshot OCR, and APIs provided to third-party developers? How can Apple work with the Khmer technology community to improve OCR accuracy and language support for Cambodia? This issue is more than a simple OCR bug. When Khmer text is automatically converted into Thai characters, users lose access to the original text, developers receive incorrect OCR output, and it negatively impacts the digital representation of the Khmer language. For reference, I have documented the issue in detail here: https://app.notion.com/p/Inaccurate-OCR-Language-Inference-Khmer-Script-Misidentified-as-Thai-in-Vision-Framework-2d8a24f4ee6680fcbc49d989f8bb606f I hope Apple will investigate this issue and prioritize improving Khmer language support across the Vision Framework and Live Text. Thank you, Vattanak Khun
Replies
1
Boosts
0
Views
113
Activity
1w
IssApple Developer Program enrollment
Hey there, Trying to enroll in Apple Developer Program and I just couldn’t keeps showing the message below Tried contacting Apple support and response was very vague and for some reason I can‘t schedule a call on my Saudi number. Any ideas?
Replies
1
Boosts
0
Views
119
Activity
1w
My Experiance with Apple (New here!)
Just want to say, I have had no issues with this process. I have read quite a bit on here, alot not great. I submitted some games on Sunday evening, 3-4 days later, reviewed and approved. I read alot of horror stories, so just wanted to say its been great for me. Usually people write complaints, not many with good stories. I am sure I will get some knocked back, but I will cross that road when I come to it! Great it's been and look forward to continuing here. Eric
Replies
0
Boosts
0
Views
85
Activity
1w
Unable to continue after Apple Developer Support reset my enrollment.
Hi everyone, I’m trying to enroll in the Apple Developer Program using the Apple Developer app on my MacBook. Originally, my enrollment became stuck before the payment step. Apple Developer Support withdrew my previous enrollment and confirmed that I could enroll again through the Developer app. The app now correctly shows “Enroll Now”, but when I click it, it immediately displays: “Unable to Continue. Contact support.” The error appears immediately, and the enrollment flow never starts—I don’t reach the terms, identity verification, or payment screens. I’ve already: Updated to the latest macOS. Installed the latest Apple Developer app. Verified that iCloud is enabled. Confirmed I’m using the same Apple ID everywhere (I only have one Apple ID). Restarted my Mac and signed out/in again. Tried different internet connections. Apple Developer Support has already reset my enrollment once, but the issue still persists. I’ve also replied to my support case with screenshots showing the problem. Has anyone experienced this after an enrollment reset? If so, what resolved it? Any advice would be greatly appreciated. Thank you!
Replies
0
Boosts
0
Views
101
Activity
1w
macOS 27 Beta 1 Install Failure
Hello, I'm unable to install macOS 27 Beta 1 on relatively clean test system - 15" MacBook Air M4 16GB RAM. Error from installer log: Jun 9 09:55:29 COMPUTERNAME osinstallersetupd[11696]: Operation queue failed with error: Error Domain=com.apple.OSInstallerSetup.error Code=1007 "An error occurred preparing the update." UserInfo={NSLocalizedRecoverySuggestion=Failed to personalize the software update. Please try again., NSLocalizedDescription=An error occurred preparing the update., NSUnderlyingError=0xbdbf93f30 {Error Domain=SUMacControllerError Code=7723 "[SUMacControllerErrorPreflightPersonalizeFailed=7723] Failed to perform PreflightPersonalize operation: [MobileSoftwareUpdateErrorDomain(MSU):MSU_ERR_PERSONALIZATION_FAILURE(2)_1_MobileSoftwareUpdateErrorDomain(MSU):MSU_ERR_GLOBAL_TICKET_INVALID(53)]" UserInfo={NSLocalizedDescription=Failed to personalize the software update. Please try again., SUMacControllerErrorIndicationsMask=0, NSDebugDescription=[SUMacControllerErrorPreflightPersonalizeFailed=7723] Failed to perform PreflightPersonalize operation: [MobileSoftwareUpdateErrorDomain(MSU):MSU_ERR_PERSONALIZATION_FAILURE(2)_1_MobileSoftwareUpdateErrorDomain(MSU):MSU_ERR_GLOBAL_TICKET_INVALID(53)], NSUnderlyingError=0xbdbf93b10 {Error Domain=MobileSoftwareUpdateErrorDomain Code=2 "Could not personalize boot/firmware bundle." UserInfo={NSUnderlyingError=0xbdbf93d80 {Error Domain=MobileSoftwareUpdateErrorDomain Code=53 "Global ticket failed to verify" UserInfo=0xbdbfd2be0 (not displayed)}, NSLocalizedDescription=Could not personalize boot/firmware bundle., target_update=26A5353q}}}}} Not sure if anyone else has experienced this error?
Replies
10
Boosts
2
Views
732
Activity
1w
[Callkit] Report call end fail
We call reportCall(with:, endedAt:, reason:) to end the call, mostly CXCallObserverDelegate func - (void)callObserver:(CXCallObserver *)callObserver callChanged:(CXCall *)call; will be called immediately with call end event. But sometimes not like this, it will not callback, and after more then 20 seconds, CXProviderDelegate func provider(_ provider: CXProvider, perform action: CXEndCallAction) will be call. It seems not expected, and will cause callkit UI not disappear in a long time. So hy call end event not be call immediately by CXCallObserverDelegate func?
Replies
1
Boosts
0
Views
109
Activity
1w
Can't add Wireguard VPN
Im on my MacBook Pro M1 and if I'm trying to load a config then it says read or writing the configuration failed. I looked to the log there is this: 2026-07-07 18:48:09.890 [APP] App version: 1.0.16 (27) 2026-07-07 18:48:21.596 [APP] Add: Saving configuration failed: Error Domain=NEVPNErrorDomain Code=5 "total NetworkExtension configuration size limit exceeded" UserInfo={NSLocalizedDescription=total NetworkExtension configuration size limit exceeded} I went to VPN and there are NO VPN configurations. But in the past I had installed Proton VPN and Express VPN.
Replies
1
Boosts
0
Views
97
Activity
1w
error in handshake to hdd controller in beta 4 (MAC OSX)
it is already the second beta release, which has heavy problems to connect to externbal hdds because of handshake problem with hdd controllers
Replies
0
Boosts
0
Views
115
Activity
1w
Maximize Window Bounceback
Usually I double click the top window bar to maximize or revert back to the position a window was in, need this efficiency and now when double clicking top window bar the window maximizes on display then quickly bounces back to same position. I realize I can press option key above green circle, beyond annoying on all screens and more so on bigger external monitors. once in a while if I double click fast enough with some luck it does what its supposed to (maximize or revert back to original pos wich is usually half or quarter screen). tried a few settings. was guessing something to do with double click speed, don't know. this is beyond annoying and having to waste time on it is also annoying
Replies
0
Boosts
0
Views
129
Activity
1w