SwiftUI Class Struct Networking XCode NSCache Enum Optionals Property Observers Closures Guard Reviews StoreKit App Store Algorithms Testing Operators Protocol Extensions Weak Unowned SwiftData WWDC23 GCD API Admob SwiftLint Lottie Foreach Objective-C UIKit NavigationSplitView

All Articles


How to use Completion Handler in Swift

When we perform network requests to fetch data from the web we have to write completion handlers to know the completion of request.It's quite handy when performing long running operations.

2023-08-26 . 2 min read     Networking

Read More »

How to write concurrent code in Swift

In a previous article, we learned how to request data from the web, handle JSON data, and make custom models using Codable.

2023-04-25 . 3 min read     Networking GCD

Read More »

Dealing with App Transport Security in Xcode

What is App transport security(ATS)?. App transport security improves user security and privacy by making secure connections to network.

2023-04-12 . 2 min read     Xcode Networking

Read More »

How to cache data in Swift using NSCache

When we develop apps for iOS, we need to perform heavy tasks such as loading images from the network, loading files, etc. It's a very time-consuming task, which affects the performance of the application.

2023-04-07 . 2 min read     Networking NSCache

Read More »

How to hit an API and parse json data

In the world of apps, practically all apps use web services to get data from the internet.It enables user to send and receive data from the web.

2023-03-22 . 4 min read     Networking API

Read More »