Search results for

apple pencil charging

147,898 results found

Post

Replies

Boosts

Views

Activity

Reply to MacOS(Apple Silicon) IOKit driver for FPGA DMA transmission, kernel panic.
First off, thank you for your patience with this. I wanted to make sure I'd gotten an authoritative answer on this, and it look a little while to get to the right person. Next, my answer here is primarily about Apple Silicon support. I think the same code will also work on 64-bit Intel and I'm not going to try and sort out 32-bit Intel. If you have time, Could you take a look at the code? I have submitted on the bug. One more thing to add: I have also tried using the prepare() interface of IODMACommand, but there have been no significant changes. So, first off, what doesn't matter here is the IOMemoryDescriptor configuration or inTaskWithPhysicalMask.Your trying to map 20Kb, so I would start testing with a size of 32Kb (2 pages). You could also specify a mask of: 0x0000 0000 FFFF F000ULL (32 bits, 16Kb aligned) ...but that's simply to start with the most straightforward configuration, not because other configuration won't work fine. What DOES matter here is the IOMapper argument of your IODMACommand
Topic: App & System Services SubTopic: Drivers Tags:
1w
Sample code not working as expected: Implementing SharePlay for immersive spaces in visionOS
The following sample code project does not seem to work as expected: https://developer.apple.com/documentation/visionos/implementing-shareplay-for-immersive-spaces-in-visionos Have tried to get this project working with a client, but while we were able to see nearby users and make facetime calls, the color changing cube experience always remained a single color. Are there step-by-step instructions that Apple has used to verify this sample code so I can try to recreate this sample code's expected behavior for both nearby participants and those in a Facetime call?
1
0
217
1w
How to test CKShare across multiple accounts?
I'm testing CloudKit Sharing (CKShare) in my app. My app uses CloudKit Sharing to share private data between users (this is not App Store Family Sharing or purchase sharing, it's app-level sharing via CKShare). To properly test this, I need three or four Apple Accounts with distinct roles in my app. This means I need three/four separate iCloud accounts signed in on test devices. Simulators are probably ok: two acting as parents (share owner and participant): parent1.sandbox@example.com parent2.sandbox@example.com, one or two as a child (participant) child1.sandbox@example.com child2.sandbox@example.com except obviously using my domain name. I attempted to create Sandbox Apple Accounts in App Store Connect, but these don't appear to work with CloudKit Sharing. I then created several standard Apple Accounts, but I've now hit a limit — I believe my mobile number (used for two-factor authentication on the test accounts) has been flagged or rate-limited for account creation, and I can no
1
0
67
1w
Reply to issue with my submission - 4.2 - Design - Minimum Functionality
It does not currently have a widget or CarPlay integrations - but that is something I've thought about. However, working full time and having a toddler leaves little time for app development :). Therefore I was also hoping I could get my app approved without having to add any more features. Do you have any advice on how to get it approved? As mentioned, this is my first app and submission, so I have little clue what Apple is actually expecting. I guess it's impossible to test outside of the supported area - pressing the button would just result in a message no parking restriction found for your location. Another possible issue is that my submission defaulted to both IPhone and IPad - while the app is only developed for IPhone, so the IPad screenshots looked badly.
1w
APNS always returning "discarded as device was offline"
Approx Dec 13th 2025 til now (Dec 29th) I noticed my APNS dropped off to nothing daily. When I try to send APNS alerts on the developer site tool it always returns discarded as device was offline for multiple devices which I know are online. When I try pushing through my VPS (as I always have without any code changes for months) I get status codes of 400 and 403 mostly and a few 200's without it delivering also. I created a new sandbox certificate just in case it was that but still no luck, I get the same results. Ive checked for any firewall issues and I see the following on my VPS: nslookup gateway.push.apple.com Server: 1.1.1.1 Address: 1.1.1.1#53 ** server can't find gateway.push.apple.com: NXDOMAIN This seems like a second issue but not the primary issue that the portal is reporting. Any ideas what to check? Im at a loss as to why its not working at all through apples test notification portal on my developer account. It seems thats the initial issue I need to solve. Thank you for any ideas/help
5
0
251
1w
Reply to Apple Developer Program payment completed but membership not activated
After all the frustration, I resigned myself to the fact that apple doesn’t need me. So I just sent a bunch of mails : “refund me” a few hours later, I get a mail saying “ We processed the credit that you requested as an exception to our policy. “ Wow, this just makes me feel super special. So let’s get this straight.. Are they saying that their policy is no refunds to a customer who paid. but does not get service. That even when the application or enrollment process lacks transparency or logic, or simply does not work as they intended, don’t expect a refund of your $99 or even the second 99 that you paid for that Service Crazy
1w
Reply to UIApplication.canOpenURL not working without Safari
Hello Albert, This is reproducible in the iOS 26.2 & iOS 26.3 official releases, not beta versions. So this seems to be an iOS 26.x bug that I can't seem to be mentioned anywhere. The links I'm talking about are both regular, simple links (think https://www.apple.com/apple-events/), the kind that would instantly open in the default browser, as well as universal links, none of them open. No external links seem to open using UIApplication.shared.open(url, options:) when Safari has been removed. If its eases communication, I already filed a feedback ticket FB21867922. I'll link to the app in the ticket there.
Topic: UI Frameworks SubTopic: UIKit
1w
Reply to Connection drops while using Content Filter & App Proxy Provider
[quote='875835022, ameydalvi_sophos, /thread/815274?answerId=875835022#875835022, /profile/ameydalvi_sophos'] Is this logline faulty or not to be taken at its face value ?? [/quote] Well, neither. I think you’re misinterpreting what this is saying. It’s simply reporting the result of its call to your handle-new-flow method. So, the code looks something like this: let provider: NEAppProxyProvider = … let flow: NEAppProxyFlow = … let log: Logger = … let didAccept = provider.handleNewFlow(flow) log.log(…: provider ( didAccept ? accepted : rejected ) new flow (flow)) Note This isn’t the exact code, but rather my re-creation of it in Swift with some irrelevant details elided. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
1w
Reply to UserDefaults not Sendable
There’s not enough context here for me to evaluate this. Can you post a snippet that’s complete enough to feed into the compiler? We have a post that describes what we like to see in general, but in this case I don’t think you need anything that complex. I often test stuff like this in a small macOS command-line tool project, and in that case I can post the entire source code as a code block. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: General Tags:
1w
Reply to OnDemand VPN connection stuck in NO INTERNET
[quote='875862022, disinghal, /thread/811887?answerId=875862022#875862022, /profile/disinghal'] Packet tunnel provider is caliing some another app which is using URLSession [/quote] Huh? Apps can’t ‘call’ other apps on iOS, and similarly for app extensions. So what do you mean by this? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
1w
Autogenerated UI Test Runner Blocked By Local Network Permission Prompt
I've recently updated one of our CI mac mini's to Sequoia in preparation for the transition to Tahoe later this year. Most things seemed to work just fine, however I see this dialog whenever the UI Tests try to run. This application BoostBrowerUITest-Runner is auto-generated by Xcode to launch your application and then run your UI Tests. We do not have any control over it, which is why this is most surprising. I've checked the codesigning identity with codesign -d -vvvv as well as looked at it's Info.plist and indeed the usage descriptions for everything are present (again, this is autogenerated, so I'm not surprised, but just wanted to confirm the string from the dialog was coming from this app) <?xml version=1.0 encoding=UTF-8?> <!DOCTYPE plist PUBLIC -//Apple//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd> <plist version=1.0> <dict> <key>BuildMachineOSBuild</key> <string>22A380021</string> <key>CFBundleAllowMixedLocalizations
10
0
561
1w
ASWebAuthenticationSessionWebBrowserSessionHandling begin callback not called for custom web handler app
I'm building a macOS app that registers itself for HTTP(S) url handling and would like it to participate in the ASWebAuthenticationSession fow. I did: update the plist to register as a handler for URL shemes (http, https, file) use NSWorkspace setDefaultApplication API to set this app as a default handler for urls in question wrote custom ASWebAuthenticationSessionWebBrowserSessionHandling implementation and set it as SessionManager's sessionHandler I launched this app from Xcode, then I triggered authentication flow from a third-party app. When the sign in flow is initiated, I can see that my app is activeated (willBecomeActive and didBecomeActive callbacks are both called), but there is no call for sessionHandler's begin() method. With some additional debugging I see that my app receives an apple event when the flow is started: {sfri,auth target=SafariLaunchAgent {qntp=90/$627......},aapd=TRUE If I switch system default browser back to Safari and then start the login flow, it correctly displays a s
1
0
150
1w