social.heise.de ist einer von vielen unabhängigen Mastodon-Servern, mit dem du dich im Fediverse beteiligen kannst.
Der Mastodon-Server von und für Heise Medien und insb. die Nachrichten von heise online.

Serverstatistik:

38
aktive Profile

#Xcode

0 Beiträge0 Beteiligte0 Beiträge heute

S4E5: @mikaelacaron and @twostraws talk networking – mostly about getting computers to talk to each other, but also, just as dauntingly, about talking to other humans at conferences too. 😱

Plus: news, Apple delays, and the trifling little matter of the major changes you’re hoping to see in #Xcode, #SwiftUI, #SwiftData and more as #WWDC25 rolls around!

🎧 podcasts.apple.com/gb/podcast/

Apple PodcastsS4E5: Could you just…?Podcast Episode · Swift over Coffee · 23/03/2025 · 33m

Swift Assist: Apple's AI tool for programming is still missing today

It is not only the more personal Siri with AI that has not yet been delivered. There is also still no sign of a developer tool that Apple has been touting.

heise.de/en/news/Swift-Assist-

heise online · Swift Assist: Apple's AI tool for programming is still missing today
Mehr von Malte Kirchner

Swift Assist: Apples KI-Tool fürs Programmieren fehlt bis heute

Nicht nur die persönlichere Siri mit KI wurde bislang nicht abgeliefert. Auch von einem von Apple angepriesenen Entwicklerwerkzeug fehlt bis heute jede Spur.

heise.de/news/Swift-Assist-App

heise online · Swift Assist: Apples KI-Tool fürs Programmieren fehlt bis heute
Mehr von Malte Kirchner

Auch wenn es mich selbst schon nervt, ich muss euch nochmal belaestigen...

Ich suche ab sofort einen neuen Job als #iOS und/oder #macOS Software-Entwickler. Ich hab viele Jahre Erfahrung auf dem Gebiet, kenne #ObjectiveC, #Swift, #SwiftUI, #Git, #Xcode und... naja, die ganze Toolchain drumherum eben.

Ich suche eine Remote-Only Festanstellung, keinen Freelance-Job (Vorzugsweise in Österreich, Deutschland geht aber auch). Wenn es in der Naehe von #Bregenz oder #Dornbirn ist, dann auch gerne Onsite.

Wenn ihr jemanden kennt, der jemanden kennt... ihr wisst schon.

Ich danke euch fuers rege Teilen/Boosten. 🙏🏻
:boost_ok:

Yesterday I finished converting the @SwiftPackageIndex test suite from XCTest over to Swift Testing 🎉

With 798 tests and 2,306 assertions it took a moment but it wasn't a particularly hard or tedious transition, thanks in large part to swift-testing-revolutionary.

I'll probably talk a bit about the process in our next podcast episode.

swiftpackageindex.com/giginet/

The Swift Package Indexswift-testing-revolutionary – Swift Package Indexswift-testing-revolutionary by Kohki Miki on the Swift Package Index – A tool converts test cases written in XCTest to swift-testing

I love how Swift Testing allows you to move things into structured annotations (traits) that previously had to be comments. Take for instance the `.bug()` annotation as a reason to skip a test - very nice.

(I believe the bug url is intended to be shown as a clickable link in the test UI in Xcode somewhere but it doesn't seem to be working at the moment. This is in Xcode 16.2.)

Okay Xcode’s predictive code model, who is Nick Lockwood? And why are you suggesting this in my project?

Yes I did search the web and found a Nick Lockwood on GitHub. However I didn’t see anything in their repos that was this line of code. Curious.

GitHub Copilot für Xcode: Öffentliche Vorschauversion verfügbar

Mit GitHub Copilot für Xcode können Entwickler die Microsoft-KI zur Codevervollständigung und als Chatfenster nutzen. Die Software erspart einige Umwege.

heise.de/news/GitHub-Copilot-f

heise online · GitHub Copilot für Xcode: Öffentliche Vorschauversion verfügbar
Mehr von Malte Kirchner

#Xcode experts: I have a Mac Catalyst app which contains a non-catalyst helper, so when I build the Catalyst app’s target, it also builds the helper. This has worked fine until I’ve now made the helper target link against a static library target. If I build the helper on its own, it works fine, but when built implicitly via the catalyst target, it tries to link against the catalyst binary of the library, which fails. (build/Debug-maccatalyst/libWhatever.a rather than build/Debug/libWhatever.a)