Higher-Order Functions in Swift

2 minute read

Higher Order function are powerful tools can help you transform, filter, and combine data with ease. What are Higher-Order Functions? Higher order function...

Expense Split - A Journey from Old to New

2 minute read

I recently decided to give my hobby app - Expense Split a complete makeover. The objective was not just to update its look but also to improve its architectu...

Building a Simple UIKit App Programmatically

2 minute read

In this tutorial, we’ll build a simple app called “QuickTabs” using UIKit, featuring a tab bar controller and a settings screen. This approach gives you more...

Closures, Extensions and Generics in Swift

2 minute read

Closures Closures are self contained lines of code that can be passed around the application and similar to blocks in Objective-C. A typical closure syntax ...

Understanding Any and AnyObject in Swift

2 minute read

Swift is known for its strong type system, which helps prevent errors and makes our code more predictable. However, there are times when we need more flexibi...

Dependency Injection in Swift

1 minute read

Dependency injection is a design pattern that lets you to pass the dependencies for the object instances instead of creating the them inside the instances. L...

Memory management in Swift

3 minute read

Memory management in Swift is done by Automatic Reference Counting or ARC. Whenever a variables holds an instance of an object the memory count for that obje...