Post

Replies

Boosts

Views

Activity

Reply to The 4.6.3 version of playground can not find the sample App download interface
Hi, unfortunately, it is not entirely clear to me what problem you are describing. if you mean the xcode playground, which is empty so that you can get started yourself, then you can first go to the gallery via the learn button and then scroll all the way down and all the way to the right, where you will find the playground. BTW: Swift Playground is attached to iCloud Drive, so accessible via iPad as well. maybe you find your codebases still there laying around in the iCloud Folder?
Mar ’25
Reply to SwiftUI – How to disable window resizability in macOS 11 and 12
Hi, did you check with this: I know its AppKit based, but you can mix&match both Frameworks. [https://developer.apple.com/documentation/appkit/nswindow/stylemask-swift.property) [https://developer.apple.com/documentation/appkit/nswindow/stylemask-swift.struct) if let window = NSApplication.shared.windows.first { window.styleMask.remove(.resizable) window.setContentSize(NSSize( width: 400, height: 400) ) }
Mar ’25