-
New Feature in Xcode 14 – Inserting Code Automatically To Codable Types Using Auto-Completion
Learn how to let Xcode 14 auto-complete all the necessary code in Codable types when they don’t conform automatically to it.
-
Does SwiftUI View Not Compile? Time To Start Making It Lighter
Read about an actual issue in SwiftUI met in a real project making it impossible to compile, and a useful working solution to get around it.
-
Iterating Through Enum Cases With CaseIterable In Swift
It’s often needed to get enum cases as an array and iterate through them, something that’s really easy in Swift and this post shows how.
-
Playing With SwiftUI – Implementing A Customizable And Animatable Circled Checkmark View
Go through a detailed making of a customizable view that displays an animated checkmark in SwiftUI meeting various techniques along the way.
-
In-Out Parameters In Swift Functions
Read about the in-out parameters in Swift functions and find out how to mutate provided arguments if necessary inside functions.
-
Enumerating and Counting Text Components in Swift
Meet a built-in API that allows to enumerate substrings and count text components such as words and paragraphs easily in Swift.
-
Fetching Remote Data With Async/Await In Recent And Older System Versions
Learn how to use the new async/await pattern in order to fetch remote data both in recent and in older system versions.
-
Using Custom Strongly Typed Values For Better Coding in Swift
Write safer and more comprehensive code in Swift by implementing and using custom strongly typed values, avoiding potential unwanted problems.