shakedown.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A community for live music fans with roots in the jam scene. Shakedown Social is run by a team of volunteers (led by @clifff and @sethadam1) and funded by donations.

Administered by:

Server stats:

267
active users

#xcode

6 posts5 participants0 posts today

🤔 Xcode 26 now includes the SourceKit-LSP frameworks. I don't see it being used, but it's a new addition to #Xcode I don't know the exact purpose, but I wonder whether the LLM is not the main reason here. OR Xcode will get LanguageServerProtocol soon for other languages

I always have multiple editors open in #Xcode Most of the time 2, sometimes 3, side by side.

But when I'm working, I keep resizing them, depending on what I'm doing or editing.

I like to configure `Control+Option+Command+=` to "Reset Editor Sizes" in Xcode. This way I can easily reset all of them to their default, equally balanced size.

Until #Xcode26 Beta, resetting the editor sizes had a bug that used to drive me crazy; a vertical line was left there, right in the middle of the editor (the workaround was to use `Command+0` twice after resetting the editor sizes).

In Xcode 26 Beta, this is FINALLY fixed.

I know it's a preview, but Xcode 26 being unable to quit as it wants to close every tab/file first but one keeps re-opening is still an over-the-top bug. #Xcode

🚨 #Xcode 26.0 beta 3 is out! 🚨

The SDKs in #Xcode 26.0 beta 3 (build 17A5276g, requires macOS 15.5+) are:

macOS 26.0 (25A5306e)
iOS 26.0 (23A5287e)
watchOS 26.0 (23R5307e)
tvOS 26.0 (23J5306e)
visionOS 26.0 (23M5290e)

Clang 17.0.0 (1700.3.13.4)
Swift 6.2 (6.2.0.13.10)

The xcodereleases.com website, API, and RSS feed have been updated with the latest information.

Two things to note:
1. The download page says it requires macOS 15.4 or later, but Xcode's Info.plist says it requires 15.5. The Info.plist is always correct.
2. The release notes are not updated yet, but likely will be soon.

xcodereleases.comXcode ReleasesMore than you ever wanted to know™

I found a workaround to the problem with Icon Composer not working for alternate app icons. Manually adding keys to the target's Info.plist seems to fix it for now. Seems to need separate keys for the ~ipad variant. Hopefully Apple fixes this soon. #Xcode useyourloaf.com/blog/adding-ic

Use Your Loaf - iOS Development News & Tips · Adding Icon Composer icons to XcodeHow do you use Icon Composer to add App Icons to an Xcode project?

„error: Build input file cannot be found: '/Users/christianbeer/Developer/…/Untitled.swift'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?“

No, Xcode, turns out I used YOU to rename it!! #xcode

Coding for iOS betas? Reminder: <available(...)> only checks runtime availability.

To keep building in stable Xcode 16.x, you’ll need compile-time checks too.

Check for a framework in the new SDKs so older compilers skip it.

Repurpose this to code a generic modifier if you need reuse.