Sponsored Link
Start automating tests with Waldo today (14 days free)
Waldo is end-to-end mobile testing done right. Easily create and maintain automated tests without worrying about reliability. Catch and fix bugs earlier in your development life cycle without the pains of scripting or manual testing. Join industry leaders like AllTrails, Lemonade, and Truebill and start your 14-day free trial today!
News
Live Activities now available in beta
Live Activities are (or will be) always up-to-date notifications for the Lock Screen, and as of this weekâs betas, you can start working with them! Hereâs a handy article to get you started. Try to keep your code for them as separate as possible, though, as youâll need to ship your iOS 16 update before this feature becomes available for the general public.
Code
Eager Grids with SwiftUI
Thereâs no other way to introduce this post from Javier Nigro other than to say it has everything I ever wanted to know about SwiftUI grid alignment, spacing, and layout. The Grid Trainer app he includes is excellent, too. Thank you, Javier!
SafeURL
Jhonatan A took inspiration from this tweet from John Sundell and wondered if he could make it a reality. With some StaticString
mixed with some plugin magic, you may never need to write another guard let on URL
again!
Note: I normally donât link to any open-source code that doesnât have a license, but Iâm sure this is just an oversight that Jhonatan will correct quickly. Always check the license before adding a package, though!
TDD Is About Writing Counter-Factual Statements
Letâs finish this weekâs Code section with this post from Christian Tietze. Itâs right there in the title, but I enjoyed this way of thinking about what a test is when doing TDD.
You turn a lie into the truth, a thought-experiment into reality.
View Is The View Model
Do you need view models if youâre working with SwiftUI? Mohammad Azam makes the case in this post that you may not. Beware of anyone making sweeping statements about app architecture (itâs one reason I rarely include architecture-focused posts), but this post is worth a read for the references to WPF!
Jobs
MacOS/iOS Developer @ DeepL â DeepL is hiring! Want to join the team behind the internet's most powerful translation engine? We are seeking an experienced MacOS/iOs developer to join our Native Apps team, on a fully remote basis. â Remote (within European timezones)
Senior iOS Software Engineer @ Cambridge Mobile Telematics â Cambridge Mobile Telematics (CMT) is on a mission to make the worldâs roads and drivers safer. We measure driving quality, incentivize safer driving, assist users in crashes in real-time, and improve safety for millions of drivers every day around the world. â Remote (within US timezones) or on-site (United States in MA)
There may only be a couple of featured jobs from iOS Dev Jobs above, but there are plenty more over on the site itself. Theyâre in the apps, too!
And finally...
Ever wanted to see what the Apple Store at the Infinite Loop campus looked like after its redesign in 2015 or how the first ever Apple Store in Stanford looked in 2001? Shop different. đ
I donât usually write much in the And Finally⌠I love the power of saying, âTrust me, click this. Itâs worth your timeâ, but I had such a visceral reaction to this app that I had to say more. I bought my first Mac in San Diego in 2006, but as soon as I loaded up the Stanford store from 2001 in this app, I was transported back in time. I walked straight over to the left-hand side where I bought my Mac, and there were the PowerBook machines. They also had the exact coffee mug that I still drink coffee out of in the Infinite Loop store. I couldnât help wishing it had the Infinite Loop store before the modernisation, where the shirts and other clothing were in a special section on the left-hand side as you walked in. It wasnât as pretty as the newer stores, but it had charm.
This project from Michael Steeber has incredible attention to detail. Trust me, click this. Itâs worth your time.
Comment
Iâve been meaning to check out the Swift for Visual Studio Code plugin by Adam Fowler and other members of the Swift Server Workgroup since I read this post on the Swift.org blog published a couple of weeks ago. I finally made some time to do it this week.
Adam goes through the extensionâs features in his post, and they all sound great! Auto-configuration for Debug and Release builds in SwiftPM projects, a view that shows package dependencies, LSP support, LLDB support, test explorer and multi-project workspaces.
But the post doesnât do the experience of opening up VS Code, installing an extension with a couple of clicks, and instantly having it understand your Swift project. Syntax highlighting and code completion just work, of course, but then youâll dive a little deeper and notice quick help popping up as you hover over symbols. You might right-click and wonder if the temptingly titled âGo to Definitionâ menu option works. Yep, it does. Itâll even navigate into your dependencies. This shouldnât be surprising. VS Code supports many different languages, but it feels unusual with Swift, which until now has been the domain of Xcode or Swift Playgrounds.
I ran the projectâs tests and watched hundreds of ticks turn green in a sidebar. Then, I launched my project, which dropped me into an interactive debugging session with everything I could have wished for from Xcode. Watch variables, a sensible call stack, conditional breakpoints, and access to the LLDB console. Itâs impressive.
Incredibly, all of this came without any custom configuration. I just installed the extension and opened my project.
Of course, Xcode also supports all these features! So why should you care? First, itâs interesting to see how initiatives like SourceKitLSP take Swift to new places. But this development environment can also do things that would be significantly more challenging with Xcode. Take a look at the docs for âremote developmentâ. If youâre developing code on Linux, youâll want to run your code on Linux, too! With remote development, you can add a small config file and switch between running your code locally and executing it inside a Docker container running Linux in a couple of clicks. If you want to try this out, Sven A. Schmidt recently wrote a simple tutorial covering this feature. Thatâs really fiddly to set up without a tool like this.
None of this is a replacement for Xcode, and itâs not intended to be! However, if youâve been holding off on trying Swift on Linux until the tooling improved. It has. Drastically. Even if youâve only a passing interest in Swift on other platforms, the experience is so good Iâd recommend checking it out.
Dave Verwer