Search results for

missing package product

50,212 results found

Post

Replies

Boosts

Views

Activity

Reply to Placemark Deprecated
I agree that the loss of individual fields is a major downside of MKPlacemark and CLPlacemark being deprecated. Now they are embedded in MKMapItem as additional opaque context with no information as to what they are. Here's what's lost: CLPlacemark's postalAddress.street is now only available as part of the strings in MKMapItem's fullAddress (in address or addressRepresentations) Example: Street Rd & Avenue Rd in Street Rd & Avenue Rd, Cupertino, CA 95014, United States Similarly, CLPlacemark's administrativeArea (the state in the US) is only available as part of the strings in MKMapItem's cityWithContext or fullAddress. It's also not clear if this context will always be the state, it may be something else per the documentation (The city name along with the country name, to provide additional disambiguating context.) Example cityWithContext: Cupertino, CA There are no equivalents to CLPlacemark's subAdministrativeArea (typically a county in the US) or subLocality (typically a neighbo
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’25
ASWebAuthenticationSession + Universal Links Callback Issue
Problem Description: In our App, When we launch the web login part using ASWebAuthentication + Universal Links with callback scheme as https, we are not receiving callback. Note: We are using SwiftUIWebAuthentication Swift Package Manager to display page in ASWebAuth. But when we use custom url scheme instead of Universal link, app able to receive call back every time. We use .onOpenURL to receive universal link callback scheme.
4
0
185
Jul ’25
Reply to Can't find arm_neon.h in macOS 15.6.1
You tagged your thread with metal-cpp so I’d like to clarify how Metal fits into this. Neon intrinsics are obviously limited to the GPU. So what’s up with Metal? [quote='800232021, anthony_gaudino, /thread/800232, /profile/anthony_gaudino'] in macOS 15.6.1 [/quote] Also, just to be clear, macOS doesn’t ship with any headers. You get headers when you install developer tools, either Xcode or the Command Line Tools package. So, which of those do you have installed? And what version? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Programming Languages SubTopic: General Tags:
Sep ’25
Customization in Swift ArgumentParser's help command and error output
Hello I want to implement customisation to swift argumentparser, Here are following changes want to do it in my cli changing default footer present in help command output currently help command output coming like this OVERVIEW: clisample USAGE: clisample OPTIONS: --version show the version. -h, --help show the help. SUBCOMMANDS: logs (default) Export logs for clisample processes. See 'clisample --help' for more information.' so instead of See 'clisample --help' for more information.' I want my own string For more details, run 'clisample help ' customise error string getting from validation error Error: Missing value for '-t ' Help: -t Time window (e.g. 10h, 30m, 2d). Usage: clisample logs --time See 'clisample logs --help' for more information. so I want error output with example and customised footer, like this Error: Missing value for '-t ' Help: -t Time window (e.g. 10h, 30m, 2d). Usage: clisample logs --time Example: clisample logs -t 5m For more details, run 'clisample help ' Is th
1
0
495
Sep ’25
Support Request: App Store Server Notification Inaccuracies
Unsure if this has been reported before, but I'm seeing a specific scenario where Apple is sending back faulty information in App Store Server Notifications. When users have payment failures that result in the membership expiring, and then reactivate later on with a different subscription, they are given a new originalTransactionId, yet we have three cases where we receive messages about the old originalTransactionId, indicating that after the user recovers their subscription, Apple is resurrecting the old subscription and treating it as if it is active BUT ultimately decides to deactivate it. Here is a sample screenshot of an impacted user. We only have three month and annual plans. Timeline: March 21st: This user signed up for a 3 Month Plan June 21st: This user fails to pay July 7th: After our 16 day grace period, this user loses access July 29th: This user sees they lost access and repurchase Augsut 19th: Their membership is deactivated (long before their 3 Month Subscription is up) For
1
0
379
Sep ’25
Reply to Support Request: App Store Server Notification Inaccuracies
Hello - thank you for your post, and for providing detailed information. In this case, here is what happened: You correctly note the first few events: Initial Subscribe on March 21, Failure to Renew due to billing issue + Start of Billing Grace Period on June 21, and Expiration of Billing Grace Period on July 7. What you may have missed is that on July 7, when the Billing Grace Period ended, the subscription continued in the Billing Retry state as detailed on this page. The Billing Retry period lasts for a total of 60 days, in all cases. Your Billing Grace Period took up the first 16 of those 60 days, so that 44 days of Billing Retry remained as of July 7. The notification you received on August 19 (with type=EXPIRED and subtype=BILLING_RETRY) was sent to indicate the end of the 60-day Billing Retry period for the original purchase (as documented here.) The purchase made on July 29 was a new and separate purchase. Ideally, your app would have known that the original subscription was still in the Bill
Topic: App & System Services SubTopic: StoreKit Tags:
Sep ’25
iOS 26 UIKIt: Where's the missing cornerConfiguration property of UIViewEffectView?
In WWDC25 video 284: Build a UIKit app with the new design, there is mention of a cornerConfiguration property on UIVisualEffectView. But this properly isn't documented and Xcode 26 isn't aware of any such property. I'm trying to replicate the results of that video in the section titled Custom Elements starting at the 19:15 point. There is a lot of missing details and typos in the code associated with that video. My attempts with UIGlassEffect and UIViewEffectView do not result in any capsule shapes. I just get rectangles with no rounded corners at all. As an experiment, I am trying to recreate the capsule with the layers/location buttons in the iOS 26 version of the Maps app. I put the following code in a view controller's viewDidLoad method let imgCfgLayer = UIImage.SymbolConfiguration(hierarchicalColor: .systemGray) let imgLayer = UIImage(systemName: square.2.layers.3d.fill, withConfiguration: imgCfgLayer) var cfgLayer = UIButton.Configuration.plain() cfgLayer.image = imgLayer let btnLayer = UIBut
12
0
663
Sep ’25
Reply to SMAppService Sample Code seems broken
It does seem to be a permissions issue. If I revert back to putting the service in /Library/LaunchAgents and call SMAppService.agent(plistName: com.xpc.example.agent.plist) as demonstrated I can establish the XPC session and the code works as intended. That makes my claims of brokenness thoroughly, regretably invalid. It works, it's just not a complete example. Once I change the Copy File phase to throw the build product into /Library/LaunchDaemons and call SMAppService.daemon(plistName: com.xpc.example.agent.plist)instead (including passing the.private` flag when establishing the session), all the trouble begins. I manually did a chmod 600 and chown root on the service binary and the plist but launchd doesn't like that any better. I'm completely ruling out any .plist errors since I have not changed a single thing in that file and the same exact file works as a LaunchAgent. If I try to register the (root owned and non-group/world readable) plist manually then this happens: % sudo launchctl load /Appl
Sep ’25
Reply to macOS 26 Launch Constraints
I'm only attempting to apply launch constraints because it seems to be the remedy to the helper/daemon crash. If there is a simpler remedy (like a new build setting I'm missing in XCode 26?) that would be even better. Mainly, I'm confused as to why building with XCode 26 and linking with macOS 26 would cause a crash with that code signing reason when previously it did not.
Topic: Code Signing SubTopic: General Tags:
Sep ’25
Xcode fails to provision target
I've alluded to this before in these posts and there are some posts from others about this, e.g. https://developer.apple.com/forums/thread/759845 and I've filed some bugs related to the behavior. FB20212935 FB19451832 FB19450508 FB19450162 FB19449747 Our company owns the USB vendor IDs X and Y . We've been granted a USB transport entitlement for both of those IDs. The crux of the problem is that I want to build a driver for USB vendor ID Y. Xcode's well-hidden auto-generated provisioning profile for my driver contains com.apple.developer.driverkit.transport.usb: { idVendor = X; } which is obviously not what I want. Xcode fails to provision the target. But I have another, much older project with an auto-generated provisioning profile containing com.apple.developer.driverkit.transport.usb: { idVendor = X; }, { idVendor = Y; } I can build a driver for idVendor Y without problems in this project. But that doesn't help me with my new project. What can I do to fix this? Do I need to request our entitlements again?
1
0
150
Sep ’25
Seeking Guidance: Car Play App Rejected.
Hello Apple Community, I'm seeking guidance on a Car Play app rejection from the apple team. My mobile-only app was approved, but the version that includes the Car play app is consistently being rejected, and I'm trying to understand the reasons for the same. I'm hoping to get insights from developers who have successfully published Car Play apps, especially those involving voice interaction. About the App My ios app is an AI-powered voice agent for drivers, designed to provide a hands-free, conversational experience. The app's features include: Information & Navigation Live weather updates. Turn-by-turn navigation for single or multiple destinations, which opens Google Maps. Real-time data lookups (flight status, stock prices, news, sports scores). Media & Entertainment Playing songs via Spotify and YouTube Music. Productivity Setting time-based reminders. Making phone calls. Vehicle Integration Remote commands for the vehicle (e.g., lock the doors, open the trunk). Accessing vehicle data (f
1
0
89
Sep ’25
Connect to saved wifi network without user auth
Hi! I'm trying to prototype a macOS app related to wifi features. The main hiccup I've encountered is Connect to a saved network without re-entering the network password. So far I've been unsuccessful in this without entering the password manually each time asking the user for authentication to access the saved network in keychain I read somewhere on the internet that CWInterface.associate would use saved credentials automatically if you gave a nil password, but my attempts have proven that to be false. Is this not currently available because it raises security concerns, or it just hasn't been considered? Or am I missing a way to do this? I don't need access to the credentials, just for the system to connect for me.
2
0
75
Sep ’25
Using FSKit for a network file system
Hello. I'm working on a sample project of a network file system using FSKit. The problem I'm currently facing is FSItems not getting reclaimed after they disappear from the file system. If an item deletion goes through the file system, I get the removeItem() and reclaimItem() callbacks. When deletion goes though a different client to the network file system I force an enumeration of the parent directory and FSKit gets the directory contents. The problem is the FSItem instances that are now missing from the contents don't get reclaimed or removed in any way and remain in memory. This gets reproduced both on macOS 15.6.1 + Xcode 16.4 and the latest beta software versions. Is there any way to work around this? Thanks
3
0
167
Sep ’25
One-time purchase with free trial
Dear all, This is my first post in this forum - and, in fact, my first app, too! I'm glad to be here, and thanks in advance for your help. I'm looking to offer an app for a one-time payment. I'd also like people to be able to try the app for a week. It seems that the Pricing and Availability section in App Store Connect is not the right place to configure this kind of offer. It does allow me to set a one-time price, but I cannot find a trial-period there (or am I missing something?) Two different strategies seem possible here: Using in-app-purchases: make the actual app free, but ask users after a week to buy a non-consumable IAP. The problem with that: I need to verify that the app has been installed for seven days ... even if it has been uninstalled at some point. Using subscriptions: There is a free trial option for subscriptions. But after that free trial, subscriptions are being payed periodically. I'd rather have the user only pay once for lifetime-access. Some apps seem to use strategy 1 - I b
9
0
11k
Sep ’25