Search results for

Apple Maps Guides

151,837 results found

Post

Replies

Boosts

Views

Activity

Case ID: 102772391808
We are enrolling on behalf of an organization. We do have following information with us. • Legal binding authority, • Legal entity status, • A D-U-N-S® number, and • A website. We are always getting the message as :- There may be an issue with your account that needs to be resolved before you can continue. Please contact support. This seems very generic message we are not getting the reason why we are not able to enroll for apple dev program.
0
0
46
1w
How does Apple achieve this effect?
Hi everyone, I'm new to building apps on Swift and recently I've been wondering how does Apple get this blur effect behind the control center on Mac OS Tahoe. I think it would be nice to use in an app that I'm making but I can't seem to find it in the docs. Is it available through AppKit? I would appreciate some help on this
0
0
548
1w
Reply to iOS 26 Network Framework AWDL not working
Hi Quinn @DTS Engineer I am curious if my post is missing any information needed to troubleshoot my issue. I searched through the forums and online and haven't found my specific issue anywhere. The more I think about it I come to the following: true peer to peer with no wifi network works with iOS devices without cellular (so AWDL is used) once cellular is introduced there needs to be a wifi network because using AWDL is not an option Maybe some kind of option can be passed into the NetworkListener or when creating a NetworkConnection that would prompt apple's code to try to use AWDL if the peer to peer option is true? [quote='867952022, DTS Engineer, /thread/808917?answerId=867952022#867952022'] Share and Enjoy [/quote]
1w
Reply to StoreKit 2 Returns 0 Products - Subscriptions “Ready to Submit” in App Store Connect
ok I've managed to get it all working correctly (following from my earlier comment) I went through the checklist posted by Apple Engineer above the TechNote checklist at: TN3186: Troubleshooting In-App Purchases availability in the sandbox | Apple Developer Documentation The thing that was blocking the products being returned in array was having not filled in ALL of the details needed on the AppstoreConnect > Business page Namely payment agreement, bank account, tax status statements etc. After I had done that, about 2 hours later, all my test calls and purchasing views were working and the whole purchase flow as usual for an iOS device See attached for Sandbox confirmation Apparently all Business info is needed even for Sabdbox transactions. HTH folks. Shout if I can add any more info
1w
Reply to Zsh kills Python process with plenty of available VM
All the documentation I was able to consult says that macOS is designed to use up to all available storage on the startup disk (which is the one I am using since I have only one disk, and the available space aforementioned reflects this) for swapping when physical RAM is not enough. Sure, that's what the system will do. Strictly speaking, it will actually start warning the user and then automatically terminating processes as it approaches full, but it will basically use all available storage. However... Then why is the process killed long before the swapping area is exhausted? ...the fact that the system is willing to use all available storage doesn't mean that it should let any random process do that. Every process on the system has its own memory limit (both address space and used pages) enforced by the kernel. I'm not sure what the default limit is... once about 40 or so... ...however, 40 GB doesn't seem like a terrible default. Keep in mind that the point of the default isn't simply to prevent the drive f
1w
Share Sheet with UIActivityItemsConfiguration
I am trying to address an issue with my app’s share sheet where, when the user sends a URL to either Apple Reminders or OmniFocus, the receiving app does not get a title. So I am updating my share sheet code to use UIActivityItemsConfiguration. I have this code: let title = Golden Hill Software let url = URL(string: https://www.goldenhillsoftware.com/)! let itemProvider = NSItemProvider() itemProvider.registerObject(ofClass: URL.self, visibility: .all) { (handler) in handler(url, nil) return nil } let config = UIActivityItemsConfiguration(itemProviders: [itemProvider]) config.metadataProvider = { (key) in if key == .title || key == .messageBody { return title } else { return nil } } let viewController = UIActivityViewController(activityItemsConfiguration: config) self.present(viewController, animated: true) This works with some share sheet extensions. But when I choose the Ivory share extension, Ivory creates a post with a URL that starts with bplist…. When I choose the Open in Chrome action extensio
Topic: UI Frameworks SubTopic: UIKit
0
0
29
1w
Questions about SignificantAppChangeApprovalRequired and detecting significant app changes
#1) The docs for the significantAppChangeApprovalRequired option (https://developer.apple.com/documentation/declaredagerange/agerangeservice/parentalcontrols/significantappchangeapprovalrequired) are a bit unclear of the meaning. If this is set to true, does that mean (a) its an indication from Apple that the user is in a jurisdiction that requires approvals for significant app changes or (b) the App store has detected a significant app change and the app needs to use PermissionKit to re-obtain approval. #2) In section Sec.A121.053 of SB2420, it states The developer of a software application shall provide notice to each app store through which the developer makes the software application available before making any significant change... and there are several subsections that define what constitutes a signficant app change that include items like change of personal data stored, etc. How can developers notify the app store that a significant change has occurred and how can the app then query the app st
1
0
205
1w
Reply to Cannot submit apps with Xcode 26.2 RC
Maybe I posted too soon because despite the text updating to say App Store and Apple accepting the upload it fails: This was after many attempts to upload with timeouts and other strange errors messages with all three of our apps - I suspect from many of us were try to upload and it overloaded the servers. And then... Apple reverted the text to remove the App Store. So something is clearly wrong at their side.
1w
RevenueCat Error: None of the products registered in the RevenueCat dashboard could be fetched from App Store Connect
Hi, I am experiencing an issue where my in-app purchase products cannot be fetched from App Store Connect during sandbox testing, despite all products being properly configured. ERROR MESSAGE: When testing on a physical iOS device, I receive the following error: Error fetching offerings - The operation couldn't be completed. (RevenueCat.OfferingsManager.Error error 1.) There's a problem with your configuration. None of the products registered in the RevenueCat dashboard could be fetched from App Store Connect (or the StoreKit Configuration file if one is being used). All products show status READY_TO_SUBMIT with the warning: This product's status (READY_TO_SUBMIT) requires you to take action in App Store Connect before using it in production purchases. I have 2 subscriptions and 4 Consumable in-app purchases set up in App Store Connect. VERIFICATION COMPLETED: Bundle ID matches exactly in App Store Connect, Xcode project, and RevenueCat dashboard Product IDs match exactly between App Store Connect, RevenueCat
2
0
94
1w
Reply to Safely updating an FSKit module via the Mac App Store
Can you confirm that this is happening in macOS 15.7.3 (24G416) in upload a new sysdiagnose if it is? It is, unfortunately, still happening in a macOS 15.7.3 (24G416) VM I'm testing in. I attached a new sysdiagnose to FB21305906. I don't know what (if any) user interface you've implemented, but having some kind of app experience running while your volume is mounted would be the most direct way to prevent these issues. Hmm, ok. So presumably if I just wait for a fix I might be waiting for a while. Right now my own UI is just a guide to enable the file system extension, so there's essentially no reason at the moment for users to keep the app itself open after that point. It's pretty much just in an app because it's necessary for distribution. Maybe I could have some GUI-less mode of the app open whenever the extension mounts something and then kill that instance on unmount? But between sandboxing and App Review complications I don't know if that's actually feasible.
Topic: App & System Services SubTopic: Core OS Tags:
1w
Repeat song listens not queryable
Hi all, I've been working on some personal programming projects and have gotten into using the Apple Music API. I'm currently looking to get a list of recent songs using the /v1/me/recent/played/tracks endpoint and it's working well. However, I know there are some songs I've listened to multiple times in a row, and those are not showing up as unique tracks when querying this endpoint. I'm only seeing a list of the different songs I've listened to lately, not a true list of the most recent plays on my account. Is this intended behavior or am I going about something incorrectly here? My query is using that endpoint & specifying the types to be only [songs]. Thanks in advance for any ideas or insight.
0
0
206
1w
Reply to Unexpected behavior with multiple apps installed which use shared groups
Our engineering teams need to investigate this issue, as resolution may involve changes to Apple's software. Please file a bug report, include a small Xcode project and some directions that can be used to reproduce the problem, and post the Feedback number here once you do. If you post the Feedback number here I'll check the status next time I do a sweep of forums posts where I've suggested bug reports. Bug Reporting: How and Why? has tips on creating your bug report.
Topic: App & System Services SubTopic: Core OS Tags:
1w
Reply to StoreKit 2 Returns 0 Products - Subscriptions “Ready to Submit” in App Store Connect
I have the exact same issue and setup as the OP. All configured as per the Apple docs. Consistently getting zero products returned. Plus, on real device Settings > Developer > Sandbox > Manage > Initiate Purchase fails with incorrect Bundle and/or Prodict ID, but says Could not complete at this time, please try later with correct Bundle & Product ID. Later being 3 days so far for me... Any help please?
1w