Posts
All the articles I've posted.
- Published on:Mar 17, 2023swift
Type erasure in Swift
In this article, we'll explore what type erasure is, how it works, and some common use cases for this technique in modern software development.
- Published on:Jan 6, 2023swift
The Singleton Design Pattern
Learn about the Singleton Design Pattern
- Published on:Jun 17, 2021swift
Adding async await support to your current async code base APIs
Learn how to add async/await support to your current APIs
- Published on:Mar 13, 2021ios
Simulate poor internet connection on iOS device or simulator
Sometimes we need to simulate a poor connection or no connection in our iOS simulator. One way to do this is disabling our WiFi from our Mac or device, but what about simulating a 3G, LTE, DSL, edge, etc connection? In this post, I want to share with you some options to do this in both an iOS simulator and a real device.
- Published on:Feb 27, 2021swift
Detecting memory leaks using Unit Tests in Swift
Memory management is a topic that every time we write code, it needs to be handled.