Alert is the equivalent to UIKit’s UIAlertView in SwiftUI. This post is about creating and presenting an alert in SwiftUI.
Continue readingProperty wrappers enables you to reuse code that specifies the access pattern of a property.
Continue readingAlmost a year ago Apple introduced SwiftUI at WWDC 2019. It’s still a very young technology but it’s quite clear that it’s the future not only of iOS development, but of macOS, watchOS, and tvOS
Continue readingCompared to many other programming languages, structs are very powerful in Swift. Hence, they should be used more often.
Continue readingThere are two ways for testing the equality of class instances: reference equality and value equality. In this post we will discuss both of them.
Continue readingI’ve been a full-time iOS developer for over 6 years now and I started learning iOS development 8 years ago. A lot has changed over the years. In this post I want to talk about the biggest changes I’ve
Continue readingSets are one of Swift’s collection types. A set stores an amount of unique values, that have no particular order. You can imagine a set to be like a box of billiard balls: They are all unique in terms
Continue readingMFMailComposeViewController provides an easy way to present a view controller, that allows to write, edit and send an email. It’s presented modally, so the context of the app won’t be left.
Continue readingThere are two types of properties in Swift: stored properties and computed properties. Stored properties store values (constant or variable) as part of an instance or type, whereas computed properties
Continue readingComparing enums in Swift is very straightforward – as long as they don’t have associated values. In this post we will discuss, what you can do in that case.
Continue readingThe best iOS development links from January 2018.
Continue readingXcode for Windows – many developers are wondering whether that exists. In this article we will answer this question. Furthermore, we will discuss which alternatives you have, if you don’t have a Mac,
Continue reading