Search results for

Apple Maps Guides

154,083 results found

Post

Replies

Boosts

Views

Activity

STUCK ON PAYMENT, NO UPDATE
I have registered for Apple developer program since December and up until now, I am still stuck on payment. I have tried several credit cards but no response. they said it takes 48 days, but mine is over 2 months now. I have sent a message to support and no response. pls what is happening and why is my experience different? why is Apple not debiting my cards and why is support ghosting me. I registered using the official Apple developer enrollment website
1
0
147
2w
Reply to Limit IP Tracking keeps turing back on
Apps tested and showing this issue are Safari, Chrome, Mail to start. I would expect to disable Limit IP Tracking and it to remain disabled unless I enable it again. After doing some testing, I determined the possible issue. If an applications has public and private DNS records, looks likes the public DNS record will be used and route the traffic over via Apple Private Relay. When on local network I would expect the private DNS servers/records to be used.
2w
Reply to MacOS(Apple Silicon) IOKit driver for FPGA DMA transmission, kernel panic.
Hi Kevin, I haven't checked the code, but I'd expect that you'd need to be page aligned, with would be 16KB (not 4KB). I'm actually not sure why gen64IOVMSegments worked, though it's possible that using the native address size changed something. Ironically, I think this might have just worked if you'd gone straight to 8MB Let me summarize my current attempts: IODMACommand uses 1B, 4KB, or 16KB page alignment, and allocates IOVM address >32 bits by gen64IOVMSegments(). If the DMA transfer process continues, a kernel panic will occur. PanicSting is apciec[pcic0-bridge]::handleInterrupt: Request address is greater than 32 bits. Using gen32IOVMSegments() will return kIOReturnMessage TooLarge. If I don't set the maximum value of 8M, the result will still be the same, so I think it may not be related to the maximum value. Based on my current attempts, I am focusing on these two issues: Does Apple M silicon not allocate<=32-bit bus addresses to third-party PCIe device (FPGA)? Can Apple M sili
Topic: App & System Services SubTopic: Drivers Tags:
2w
Reply to launchd StartCalendarInterval behavior changed
Well I committed the cardinal sin of not eliminating enough variables before debugging. Time to set the record straight! Here's what I learned: Above, I was wrong: in fact, macOS 26, 15, 12 (and earlier!) all DO exhibit this behavior: running a CalendarInterval scheduled job when MacBook is sleeping. The differentiator is not the OS version but the state of the lid -- lid open while asleep and you get the DarkWake behavior: launchd runs your job, it may still get suspended until a full wake Lid closed while asleep - behavior is as described here -- your job does not run in any way until the lid is opened I don't know what desktop Macs do here (no lid!). There is a PowerNap boolean key used by Apple in /System/Library/LaunchDaemons/ *.plists, but I wasn't able to suss out its behavior, and it only seems to be used in a com.apple.xpc.activity dictionary. If you'd like to give this a go for your own devices, dear reader, I wish you luck. I was mis-attributing OS version to this launchd behavior, when it
Topic: App & System Services SubTopic: Core OS Tags:
2w
PHPickerViewController displays the photo picker with shrunken UI
I need to create a Mac application using Objective-C. The application has to use PHPickerViewController to provide user a familiar interface to pick photos. Here is the Objective-C code that used to present the photo picker. //ViewController.h #import #import @interface ViewController : NSViewController @property (nonatomic, weak) IBOutlet NSImageView *myImageView; @end // ViewController.m @implementation ViewController PHPickerViewController* pickerViewController = nil; - (void)pickPhotos { PHPickerConfiguration *config = [[PHPickerConfiguration alloc] init]; config.selectionLimit = 0; // Allow multiple selections config.filter = [PHPickerFilter imagesFilter]; // Filter for images pickerViewController = [[PHPickerViewController alloc] initWithConfiguration:config]; pickerViewController.preferredContentSize = NSMakeSize(800, 600); pickerViewController.delegate = self; // Set the delegate to handle selection [self presentViewControllerAsModalWindow:pickerViewController]; - (IBAction)clicked:(id)sender { NSLo
Topic: UI Frameworks SubTopic: AppKit
5
0
272
2w
Reply to launchd StartCalendarInterval behavior changed
Thank you for your insight - that's a good piece of the puzzle! I found the DarkWake session: WWDC 2012, Session 711, Power Management with Ethan Bold and Soren Spies. Sadly, I can't blame DarkWake because it has been around since 2012, but I only see this unexpected wake on newer macOS. Since I'm using StartCalendarInterval on different versions, here's what I see: macOS 12 and earlier behave as expected; sleep through the CalendarInterval macOS 15 & 26 dark wake at the CalendarInterval Perhaps Apple changed launchd to be capable of scheduling a dark wake. My guess is there is a Launch[Agent|Daemon] *.plist key that can be used to change this behavior. I'll fire up BBEdit and go spelunking through /System/Library/LaunchDaemons/ to see if I can find a relevant key. Of course, if this was documented, I wouldn't be left wondering if I should file a bug report!
Topic: App & System Services SubTopic: Core OS Tags:
2w
macOS 26.3 RC breaks all borderless window interactions
After updating to macOS 26.3 Release Candidate, all interactions for borderless windows are no longer working. In macOS 26.3 Beta, borderless windows behaved correctly: • Mouse clicks were received normally • Window dragging worked as expected • Interaction logic was fully functional However, in macOS 26.3 RC, all of the above behaviors are broken: • Click events are not delivered • Windows cannot be moved or interacted with • The issue affects all borderless windows This is a regression from the Beta build and appears to be system-level, not app-specific. Environment: • macOS: 26.3 RC • Window type: borderless / frameless windows • Status in 26.3 Beta: working correctly • Status in 26.3 RC: completely broken Could Apple confirm whether this is a known issue or an intentional behavior change in 26.3 RC? If this is a , is there a recommended workaround before the final release? Thanks.
Topic: UI Frameworks SubTopic: AppKit
2
0
161
2w
Reply to launchd StartCalendarInterval behavior changed
This all makes me think that sleep on macOS in the past few years is now defined differently -- perhaps an Apple Silicon change? But I can't find documentation that covers this. Buried in a WWDC video, maybe? I think it was before that. It sounds like you're encountering Dark Wake. It's only hinted at in a couple of places in the documentation. The Power Nap feature is closely related and seems to be more openly acknowledged. But I don't know of any way (for an app) to detect or control when they get triggered. Apple engineers say there's no way to detect it.
Topic: App & System Services SubTopic: Core OS Tags:
2w
Critical Privacy and Security Issue: Spotlight disregards explicit exclusions and exposes user files
Apple has repeatedly ignored my reports about a critical privacy issue in Spotlight on macOS 26, and the problem persists in version 26.3 RC. This is not a minor glitch, it is a fundamental breach of user trust and privacy. Several aspects of Spotlight fail to respect user settings: • Hidden apps still exposed: In the Apps section (Cmd+1), Spotlight continues to display apps marked with the hidden flag, even though they should remain invisible. • Clipboard reactivation: The clipboard feature repeatedly turns itself back on after logout or restart, despite being explicitly disabled by the user. • Excluded files revealed: Most concerning, Spotlight exposes files in Suggestions and Recents (Cmd+3) even when those files are explicitly excluded under System Settings > Spotlight > Search Privacy. This behavior directly violates user expectations and system settings. It is not only a major privacy issue but also a security risk, since sensitive files can be surfaced without consent. Apple mus
2
0
407
2w
Quick Look Plugin for Mac and Internet Access
I'd like to create a Quick Look extension for a file type for which a location or region on a Map should be shown as preview. However the MapView would only show a grid without any map. From within the MapKit delegate I can see from the Error parameter (a server with this domain can not be found) that this seems to be a network issue. The Quick Look extension seems to have no access to the internet and therefore the MapView can not load any map data. I've then also done some other tests via URLSession, which also only fails with connection errors. I haven't seen any limitations or restrictions mentioned in the API documentation. Is this the expected behavior? Is this a bug? Or am I missing something?
3
0
223
2w