Post

Replies

Boosts

Views

Activity

Reply to Xcode 16.3 Beta3: Developer Documentation Indexing does not end...resulting in Xcode CPU Usage high over long time.
Installed Xcode 16.3 RC (Version 16.3 (16E137)) fixed: UIKit is showing up in Documentation. This is fixed. Thanks. :-( BUT NOT FIXED - Issue with high CPU consumption >80% Xcode Process, Indexing stucked. with Version 16.3 (16E137) the Index Directory name has changed to v278, but unfortunately same issues as with previous beta 3 (277). Starting indexing, but after some minutes it looks like stuck and the size-increase of the directories is halting. Normally (expecting from v275 16.2 is about 534MB); in 16.3 RC + Beta3 it is stopping around 61MB. Xcode Process is continuing running with about 80% CPU consumption! Feedback FB16926964 is updated.
Mar ’25
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