ar bg de en es fr id it nl pl pt sv tr zh

foundation

Referencing itself in a struct in Swift

Toomas Vahter

It took a long time, I mean years, but it finally happened. I stumbled on a struct which had a property of the same type. .gist table { margin-bottom: 0; } This file contains hidden or bidirectional Unicode text that...

Testing network calls using URLProtocol

Artur Gruchała

Testing network calls is a critical aspect of ensuring the reliability and stability of your iOS applications. We'll explore how to effectively test network calls in Swift using the URLProtocol API. With this guide, you will have powerful tools to ensure code quality.SetupWe will use a very simple...

Unit conversion is easy in Swift

Artur Gruchała

Foundation framework has many useful implementations, that can make our life easier. One of them is Unit and Measurement APIs.Unit and MeasurementMeasurment is a struct that holds the value of the given Unit. Additionally, it can convert, add, subtract, and do other arithmetical operations on this...