-
Blur Effect in SwiftUI
Applying blur effect in SwiftUI is a super-easy task, and this post showcases how to do so, as well as how to change blur amount on the fly.
-
Higher Order Functions in Swift - forEach, filter, sorted
Three quite common higher order functions in Swift; forEach, filter and sorted. Read on to find out what they are for and how to use them.
-
Higher Order Functions in Swift - map, compactMap, flatMap
This post presents and explains three important and common higher order functions in Swift that are important tools to every developer.
-
Higher Order Functions in Swift - An Introduction
What exactly are higher order functions in Swift? This post explains that, and it goes one step further by showing how to create your own.
-
Quick Tip - Detecting Color Scheme in SwiftUI
Light or dark mode? Learn how to detect the current color scheme in SwiftUI and update your interface accordingly when necessary.
-
TextEditor in SwiftUI
Starting in iOS 14, SwiftUI provides its own text view called TextEditor. Find out how to use it and get around specific peculiarities easily.
-
Save And Open Panels In SwiftUI-Based macOS Apps
Presenting save and open panels in SwiftUI based macOS apps is a topic easier than you may think, and this post demonstrates how to do that.
-
The @discardableResult Attribute in Swift
Read about the @discardableResult attribute in Swift and learn how to ignore return values from methods when you don't want to use them.
-
Save And Open Panels in macOS Apps
Presenting save and open panels in macOS apps is a quite common task. In this post you will learn how to integrate them in your own projects.