Search results for

Apple Maps Guides

154,028 results found

Post

Replies

Boosts

Views

Activity

Reply to URL Filter Network Extension
[quote='815498021, Pushpak-Ambadkar123, /thread/815498, /profile/Pushpak-Ambadkar123'] URL Filter Network … is only for Enterprise level or MDM or supervised device. [/quote] That’s not right. You are mixing up URL filters with content filters. URL filters have strong privacy fundamentals and thus have no deployment limitations. In contrast, content filters have significant deployment limitations. See TN3134 Network Extension provider deployment for all the details. [quote='815498021, Pushpak-Ambadkar123, /thread/815498, /profile/Pushpak-Ambadkar123'] When trying to run sample project in the simulator [/quote] The simulator uses the macOS networking stack, so you can’t test low-level networking facilities there. You’ll need to test this on a real device. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
1w
Reply to Providing client with IPA for internal distribution
The specific thing you’re looking for — distributing iOS apps to arbitrary devices not through an Enterprise team — is not possible. As you’ve noted: Developer ID is a Mac thing. Ad Hoc distribution is limited to a specific set of devices. One alternative path is to put the app on the App Store but limit who can buy it. See the discussion of custom apps on Distributing Apps on Apple Business Manager and Apple School Manager Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Business & Education SubTopic: General Tags:
1w
Providing client with IPA for internal distribution
Hey folks, I work as a software development consultant. We develop enterprise applications for our clients, and the apps we create are usually for internal use. We've ran into a bit of a conundrum with a client who doesn't have their own Apple Enterprise account, and neither do we as we don't meet the criteria, but they're wanting to distribute an application we've built for them via their own MDM software. We are not entirely sure how to provide them with a distribution ready .ipa file that isn't AdHoc and will be recognized as a secure app. We've looked into generating a Developer ID provisioning profile and accompanying cert, however we're running into a problem where the platform of our app (iOS) doesn't match the platform required by the Developer ID profile (macOS). I've also come across the idea of resigning an .ipa, but again, the client doesn't have a Apple Developer account and expects the working .ipa to be included in the service rendered. Any suggestions or advice or documentati
1
0
120
1w
Reply to How to Create a Full-Width Container (Edge-to-Edge Layout) Above a List View
The Apple sample code Landmarks project uses a LazyVStack inside a ScrollView. For a List, which you want, you will need to: Put the ContainerView in the List as the first row. Set the listRowBackground of the ContainerView to EmptyView(). Set the listStyle to plain, for listRowBackground to work. Add .background(alignment: .top) { with the background you want for the ContainerView. Use readFrame() to dynamically adjust the height of the background to match the maxY position of the ContainerView. import SwiftUI struct ListHeaderScene: View { @State var headerRect: CGRect? var headerHeight: CGFloat { headerRect?.maxY ?? 0 } var body: some View { List { ContainerView() .readFrame { headerRect = $0 } .listRowSeparator(.hidden) .listRowBackground(EmptyView()) Section(Section Title) { Text(Row 1) Text(Row 2) } } .listStyle(.plain) .background(alignment: .top) { // You can swap this for an image or whatever. Color.purple .frame(height: headerHeight) .ignoresSafeArea() } } } struct ContainerView: View { var
Topic: UI Frameworks SubTopic: SwiftUI
1w
Digital Services Act: In Review for 14 days already.
Hi all, I was wondering if someone could provide more information about the Digital Services Act review process. I haven’t been able to find any details online, and I haven’t received a response to my support requests (it has been 9 days so far). I submitted the requested Digital Services Act information on February 27, but I haven’t received any update or automated confirmation email. The request is still visible under business agreements in my Apple Store Connect account. Does anyone know how long this review typically takes? Or whether I should contact support through a different channel? Thank you in advance!
2
0
78
1w
Reply to Apple Pay In-App Provisioning – Apple server failure when adding a card
hi @DTS Engineer In feedback ID https://feedbackassistant.apple.com/feedback/21352672 , we contacted PNO to investigate, and they determined that the issue was a missing WSD key. After configuring this key, the issue still persists with the same logs. PNO also reported that they still do not receive any calls from Apple services for the eligibility check step. Could you please help us check this? I have created a new feedback request for this issue: https://feedbackassistant.apple.com/feedback/21945664 Thank you.
1w
Reply to coreaudio-api mailing list search broken
To follow up on this, the search functionality of the archive is still broken. Additionally, the whole lists.apple.com server was down a few days ago. I still haven't received any reply from Apple. In case it helps others, I used the Wayback Machine to create an archive of the old coreaudio-api mailing list. It's available here: https://github.com/iccir/coreaudio-api-archive
1w
Reply to System Panic with IOUserSCSIParallelInterfaceController during Dispatch Queue Configuration
First off, I want to start with a clarification here: We are in a logical deadlock. The kernel dispatches a probe command before UserCreateTargetForID returns, and both of our methods for handling this command result in a permanent hang of the registration process: Calling UserCreateTargetForID means please create the storage stack for this target. Returning from it means I've finished creating the storage stack for this target. I'm not sure how far up the stack you'll actually get, but it's conceivable that we'd get all the way through partition map interpretation and (possibly) volume format detection BEFORE UserCreateTargetForID returns. You're basically guaranteed to get I/O request before UserCreateTargetForID returns. [1] I think the upper levels of the SAM stack prevent this by returning from state before calling registerForService on their IOStorage family nubs, but there's no technical reason why they'd HAVE to work this way. That leads to here: We mark the target as Ready during the UserIni
Topic: App & System Services SubTopic: Drivers Tags:
1w
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 IODM
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
216
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
63
1w