Post

Replies

Boosts

Views

Activity

High Level Documentation
Where did the high level documentation, such as Introductions and Guides get off to?For example, where do I find, on the Apple Developer Documentation site these two guides or the replacements for them:https://developer.apple.com/library/archive/documentation/Miscellaneous/Conceptual/MetalProgrammingGuide/Introduction/Introduction.htmlhttps://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/UserDefaults/Introduction/Introduction.htmlThere doesn't seem to be anything on what I'll call the "Current Site" but the low level, raw API documentation like https://developer.apple.com/documentation/metal?language=objc
2
1
868
Oct ’18
applicationShouldOpenUntitledFile isn't working anymore
I saw this thread https://forums.developer.apple.com/forums/thread/69888 and I need to not open a new default window just because the app is brought to the front without having any windows open. Unfortunately, that isn't working any more under Sonoma 14.5. Here's my code: // Let's not open default window just because we're being brought to the front. -(BOOL)applicationShouldHandleReopen { return NO; } -(BOOL)applicationShouldOpenUntitledFile { return NO; } I have breakpoints set on both return statements, but they are never hit.
2
0
480
Jun ’24