And another post on how to fix crude Xcode or more specifically SwiftUI errors. Did you ever come across “Cannot use explicit ‘return’ statement in the body of result builder ‘ViewBuilder'”? I see it regularily and it’s actually not to … Read the rest
I have to admit that I do not really regularily write into this blog. Usually, whenever I have an idea, I write down a first draft and finish the post later, sometimes weeks later. Some days ago I had such … Read the rest
When reading through iOS related subreddits, I often get the feeling that a lot of basic techniques regarding App Store Optimzation (or in short ASO) are seemingly not well known. Now and then there are comments or questions regarding ASO … Read the rest
Today, I wanted to create a labeled TextField
in SwiftUI. More specifically the label should appear as a small text above the TextField
. My first quick hack was to just add a label above a TextField
. Obviously, we … Read the rest
Developing iOS Apps for Kids
I do stumble now and then across (more or less great) apps for smaller children, kids or toddlers. You have probably seen these as well. I never released any app for the kids category but I was curious how it … Read the rest
Lately, I released my first visionOS app. Actually, my personal deadline was the US release date (2nd of February 2024) and gladly everything worked out. You can read a little bit about it in my other article: https://mic.st/blog/develop-and-release-a-visionos-app-without-vision-pro/. One … Read the rest
On February, 2nd there was the US release of Apple’s Vision Pro which started (according to Apple) the era of “spatial computing”. In case you are not a US citizen or flew to the US just for getting your hands … Read the rest
In the past, I already did electronics projects with a lot of different platforms, e.g different versions of Raspberry Pi, Atmel microcontrollers, some Arduinos and of course Lego Mindstorms 😁. Today, I want to share with you how you can … Read the rest
Although SwiftUI did become more and more mature over the years: When it comes to error handling, SwiftUI still sometimes feels like a pain. You probably have seen the following error more than once: It reads “The compiler is … Read the rest
By implementing UISearchController
you can easily add search functionality to any UITableView
. However, having such a search bar might have accessibility drawbacks. It might even be completely unusable users relying on Voice Over.
This article is part of my … Read the rest