Search results for

apple pencil charging

147,860 results found

Post

Replies

Boosts

Views

Activity

Reply to iOS app from TestFlight cannot be opened due to Code signing
[quote='876059022, jzilske, /thread/815493?answerId=876059022#876059022, /profile/jzilske'] the exception reason tripped me up at first: [/quote] Yeah, I’ve been mislead by that in the past. Fortunately, this time I remembered the mantra that we here in DTS chant steadily throughout the day: Always start with a crash report. Always start with a crash report. Almost start with a crash report. … (-: Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: General Tags:
6d
Reply to QuickLookAR shares the actual USDZ model instead of the original website URL — critical copyright and data leak issue on iOS 26
I didn’t reply earlier because I didn’t see your comments )-: See tip 5 in Quinn’s Top Ten DevForums Tips. Regarding FB20753534, I’ve got no info to share on that front. I can’t talk about Apple’s internal processes and I can’t offer predictions about The Future™. Having said that, iOS 26 has been shipping for a while now, so even if this behaviour changed today you’d still have to decide what to do about all the existing iOS 26 installs. And once you make that decision, which admittedly might involve some tough choices )-:, there’s less pressure on you getting a resolution from Apple. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Privacy & Security SubTopic: General Tags:
6d
Reply to OnDemand VPN connection stuck in NO INTERNET
[quote='876243022, disinghal, /thread/811887?answerId=876243022#876243022, /profile/disinghal'] It's MacOS [/quote] D’oh! Yes, sorry, I had my iOS coloured glasses on )-: [quote='876243022, disinghal, /thread/811887?answerId=876243022#876243022, /profile/disinghal'] We are calling some custom extension using Apple's enterprise single sign-on feature. [/quote] So your packet tunnel provider is using URLSession to issue a request that’s triggering enterprise SSO which then ends up calling an SSO app extension? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
6d
Reply to Why do random errOSAInternalTableOverflow errors return when running AppleScripts via ScriptingBridge?
Yeah, this isn’t super surprising. errOSAInternalTableOverflow isn’t something I have a lot of experience with but it seems like it’s primarily associated with AppleScript’s garbage collector. At least one of the places that raise this error logs relevant info to the system log, so you should have a rummage around in there to see if anything interesting pops out. See Your Friend the System Log for my advice on how to wrangle the system log. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
6d
Reply to Usage of External Packages for the challenge
[quote='876196022, omeriadon, /thread/812607?answerId=876196022#876196022, /profile/omeriadon'] Are we not allowed to add a package normally and the judging computer download the package? [/quote] In the fine print we specifically state that your playground is expected to work without a network connection. For other hints and tips on this topic, see my reply on this thread. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
6d
Reply to Duplicate Certificates Cause codesign errSecInternalComponent failures
I’m glad to hear you got this sorted out. I recommend that you read the following, which might explain some of the pathologies you encountered: Creating distribution-signed code for macOS (specifically, the bit about not using sudo) The Care and Feeding of Developer ID Resolving errSecInternalComponent errors during code signing Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
6d
Reply to Help resolving crash after using malloc_get_all_zones()
The documentation for our low-level APIs is quite scattered, something I going into detail in in Availability of Low-Level APIs. In this specific case a good start is the header itself, which has this key titbits: Note that the validity of the addresses returned correspond to the validity reader You’re passing in NULL, which gives you the in-memory reader, which returns everything directly, and thus doesn’t need to be deallocated. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
6d
Help resolving crash after using malloc_get_all_zones()
In an ObjC framework I'm developing (a dylib) that is loaded into JRE to be used via JNI (Zulu, Graal, or native image from Graal+ a JAR) I implemented a naive method that collects current memory footprint of the host process: It collects 5 numbers into a simple NSDictionary with NSString keys (physical footprint, default zone bytes used and allocated, and sums for used and allocated bytes for all zones. The code ran for some time, but at certain point my process started crashing horribly in this method -- at the last line, accessing the dictionary. Here's the code: -(NSDictionary *)memoryState { NSMutableDictionary *memoryState = [NSMutableDictionary dictionaryWithCapacity:8]; // obtain process current physical memory footprint, in bytes. task_vm_info_data_t info; mach_msg_type_number_t count = TASK_VM_INFO_COUNT; kern_return_t kr = task_info(mach_task_self(), TASK_VM_INFO, (task_info_t)&info, &count); [memoryState setObject:(kr == KERN_SUCCESS) ? @(info.phys_footprint) : [NSNull null] forKey:@physic
1
0
66
6d
Reply to MusicKit entitlement consistently missing from generated Ad Hoc Profile despite App Services configuration
I’m glad to hear that you got this sorted. [quote='876168022, kjw1978, /thread/815604?answerId=876168022#876168022, /profile/kjw1978'] Do NOT add the entitlement to app.json. [/quote] Correct. [quote='876168022, kjw1978, /thread/815604?answerId=876168022#876168022, /profile/kjw1978'] Apple now treats MusicKit as a Runtime Service [/quote] The word “now” is misleading, in that it suggests that this changed at some point. That’s not the case. MusicKit has never used entitlements. Indeed, trying to use an entitlement for this is one of the common mistakes I call out in Determining if an entitlement is real. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: Entitlements Tags:
6d
Reply to Issue with Xcode 26
If you search the ’net for “Unsupported Swift Architecture”, you’ll find a bunch of helpful advice on this front. My additions to that are: If you’re using third-party tooling or libraries, seek help from the support channel for the relevant vendor. TN3117 Resolving architecture build errors on Apple silicon describes best practices for your build architecture settings. Check your settings to make sure you’re following them. If you get stuck, try to isolate the problem into a small test project and then share that here. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
6d
Issue with Xcode 26
How to resolve this error ? Unsupported Swift Architecture while trying to run my code. I am.using Apple laptop with M1 chip with 10 core, Mac os 26.1, xcode 26.1, simulator 26.1. THIS IS VERY URGENT FOR MY PROJECT DELIVERY. ANY PROMPT HELP IS MUCH APPRECIATED. possible to connect some expert via conference call ?
2
0
32
6d
Reply to Issue with Xcode 26
If you search the ’net for “Unsupported Swift Architecture”, you’ll find a bunch of helpful advice on this front. My additions to that are: If you’re using third-party tooling or libraries, seek help from the support channel for the relevant vendor. TN3117 Resolving architecture build errors on Apple silicon describes best practices for your build architecture settings. Check your settings to make sure you’re following them. If you get stuck, try to isolate the problem into a small test project and then share that here. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
6d
Reply to Is Anybody interested in using Lottie animations in your SSC playground app in Xcode
I can’t comment about specific third-party libraries, so let me answer with some general guidance: As mentioned in the fine print, your playground is expected to work without a network connection. One consequence of that is that, if you rely on a third-party library, you have to vendor [1] that library, that is, copy the code into your own sourcebase. Whenever you use a third-party library, you have to make sure that your use is compatible with its licence. Finally, on a mechanical front, rather than delete the .git directory my advice is that you use git export to export a specific tag or version branch, and then try to avoid modifying the library code [2]. That’ll make it easier for Future You™ to understand how your playground is set up (-: Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] The origina of this term are interesting, and if you search the ’net for “what is vendoring a library” you’ll find a bunch of backstory. [2]
6d