Search results for

apple pencil battery life

146,274 results found

Post

Replies

Boosts

Views

Activity

Reply to Example of DNS Proxy Provider Network Extension
[quote='860711022, GlacierSec, /thread/802691?answerId=860711022#860711022, /profile/GlacierSec'] will the DNS Settings API allow it to be turned on and off from within the app? [/quote] Sure. In the DNS settings API you use NEDNSSettingsManager to apply your settings, and it has an isEnabled property that does what you want. IMPORTANT The limitations on DNS proxy providers are privacy focused. A DNS proxy has a privileged network position, allowing on-device code to see all the DNS names used by the user. The DNS settings API doesn’t work that way, because you just apply settings that are then used by the built-in resolver. That’s why you can use the DNS settings API in any context, where DNS proxy providers have hard deployment limits. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
Reply to NEVPNConnectionErrorDomainPlugin code 7 on URLFilter sample code
What platform are you testing this on? [quote='860810022, krpaul, /thread/802801?answerId=860810022#860810022, /profile/krpaul'] I've submitted a bug report: FB20479096 [/quote] OK. But it has no sysdiagnose log, which is gonna limit its ability to get traction. I recommend that you grab a sysdiagnose log immediately after reproducing the problem and then attach it to your bug. See our Bug Reporting > Profiles and Logs for more on sysdiagnose logs. Oh, and while you’re there, have a read of the VPN (Network Extension) for the platform you’re targeting and enable the extra diagnostics. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
Reply to Questions about using App Extension communication with host apps on iOS 26 (Xcode 26)
I’m gonna start with your first question, for reasons that I hope will be obvious. You wrote: [quote='802846021, herman602, /thread/802846, /profile/herman602'] Can this method described in the article be built with Xcode 26 and run on iOS 26? [/quote] And then: [quote='802846021, herman602, /thread/802846, /profile/herman602'] Or is it restricted to run only on iOS 26 [/quote] Huh? I think one of those 26’s is meant to be a different number. That or I’ve completely misunderstood your point. Please clarify. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
Reply to DeclaredAgeRange import error in Mac Catalyst app
This is clearly a bug. We either need to fix the SDK or fix the docs. I encourage you to file a bug to that effect. Please post your bug number, just for the record. You’ll be able to get your code building by conditionalising it like so: #if canImport(DeclaredAgeRange) import DeclaredAgeRange #endif And likewise for the places you use the API. Still, that leaves you without this functionality )-: Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
Reply to SSO Extension Fails XPC Connection to System Daemon (mach-lookup exception used)
My general advice on this front is to avoid temporary exception entitlements where you can. This is critical for App Store apps, but generally a good idea for products that you directly distribute using Developer ID signing. In this case there’s a standard way for sandboxed programs to use XPC without needing temporary exception entitlements, namely an app group. If you set up an app group, grant your app and your appex access to that group, and then have your daemon publish its named XPC endpoint ‘within’ that group, the sandboxed processes should be able to access that service without the need for a temporary exception entitlement. See App Groups Entitlement for info on how that works. Well, the app certainly will be able to. The situation with the appex is more nuanced, because appexen run in a custom sandbox that doesn’t always align with the standard App Sandbox used by apps. Which is probably the reason why your temporary exception entitlement is failing. I think the app group approach will help here, b
2w
Reply to Problem with provisioning profile not being applied in Xcode
You tagged your thread with Mac and mentioned that the app “bounces”, which seems like a Dock thing, but you then specifically called out that this is “new IOS provisioning profile”. So I’m a bit confused. What sort of app is this? And if it’s an iOS app, are you trying to run it on your Mac? That is, using the iOS Apps on Mac feature? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
Reply to LAContext.evaluatedPolicyDomainState change between major OS versions
The lesson from that other thread is that Apple reserves the right to change such values extra-ordinarily — that is, without the user specifically changing their biometrics — and your app should be designed to handle that gracefully. The doc comment you’re looking for isn’t on the domainState property, but rather on the various stateHash properties in . Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Privacy & Security SubTopic: General Tags:
2w
Reply to How to retrieve the memory pressure information from macOS
It’s better to reply as a reply, rather than in the comments; see Quinn’s Top Ten DevForums Tips for this and other titbits. there's some another way to read the current value instead of waiting for events? Not that I’ve seen. Certainly, the vm.memory_pressure value you mentioned in your other thread is not the droid you’re looking for. If you want to see what that returns you can look at the implementation in Darwin; it’s clearly part of this equation, but it operates at a much lower level. Likewise for things like kern.memorystatus_level. I think your best option is to assume that memory pressure is normal until you get an event via the Dispatch source. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
2w
Implementing In-App Purchases with Capacitor (Currently Using Stripe)
Hello everyone, I’m currently working on an iOS app built with Capacitor(5.0.6) with Cordova and vanilla JS. At the moment, my app uses Stripe to handle payments — on iOS I open a Safari View Controller so users can pay with Apple Pay or their credit card. However, I need to migrate to Apple’s In-App Purchase system to comply with App Store policies. I would really appreciate some guidance or a step-by-step outline on the following: The exact process to enable and configure In-App Purchases in Xcode and App Store Connect for a Capacitor-based app. How to properly set up local testing with StoreKit (or any other recommended approach) before submitting to review. Best practices for integrating In-App Purchases when using RevenueCat, since I’m considering it to simplify the implementation. Any pitfalls or gotchas that I should be aware of during the first submission (for example, the requirement to include the first IAP with a new app version). My goal is to fully comply with Apple’s p
1
0
120
2w
How can I cancel my TestFlight build subscription purchase?
I built a TestFlight version of my unpublished app. While using it, I wanted to test out the subscription purchase and when I did, I used my real production Apple ID and not a Sandbox test account to purchase the subscription. I was surprised to see that it worked and I was able to use the test subscription in the app. However, I now have no way of canceling it. It has renewed every day at the same time due to the accelerated TestFlight subscription rate (it's a monthly sub). I read that it should stop auto-renewing after the 6th time, but I believe it's been over a week now and it still hasn't cancelled. I understand that it's not a real purchase, but I would still like to cancel it so I can try it without the purchase again using this account and also use it with a different Sandbox account. Can someone help me with canceling it? Since the account I used was not a Sandbox account, I can't just clear the purchase history in App Store Connect. Also, I can't go into my personal account settings to rem
2
0
168
2w
SwiftUI Controls Documentation
Hi, I am looking for comprehensive controls documentation for SwiftUI. When searching on the Apple site, I have not seen any documentation that shows a picture of a control and an explantation of what it does, for all the available controls. I have also searched the web for such documentation, and have not found any. When I was learning Rust, I came across a beautiful document about GTK3 (PDF) that had a complete list of controls, including pictures. If something looked interesting I could do a search for more details. Thanks, Jim
1
0
133
2w