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
Tag: iOS
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
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
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
Graphs and charts are an essential tool for visualizing data, and with SwiftUI, it’s easy to create custom and interactive graphs (Spoiler: we won’t add any interactivity during this arcticle). You can use them in iOS, iPadOS, and macOS … Read the rest
Lately, I also jumped onto the ChatGPT train and wanted to give it a try for the use in Swift development for the iOS platform. Here are my experiences so far using it for around 1 or two months now.… Read the rest
This is a frequently updated list of links regarding accessibility I found worth saving. It’s currently focused on mobile (especially iOS development) as this is my main area right now.
Last update: 5th July 2023
Guidelines & Standards
This section … Read the rest
Currently, I am working on an app that features a table view with custom cells representing single items or grouped items. You can expand the group cells (to see their content) by selecting them. There are multiple ways to … Read the rest
Working with dates in Swift is a thing I remembered to struggle for a long time as a Junior developer. However, you should get used to objects that have date properties. E.g. you can sort stuff (e.g. see https://mic.st/blog/how-to-sort-an-array-of-objects-by-date-property/) … Read the rest
You might know the very handy sort(by:)
method in Swift that you can use to sort any kind of array. If not, see this as some kind of friendly introduction to you. Read carefully and I will teach you now … Read the rest