Stories Worth Reading

Ideas that inspire,
code that delights.

Discover thoughtful articles, tutorials, and perspectives from developers who love what they build.

5+ Stories
43 Topics
Ideas

Recent Stories

J
Joynal Abedin in

Dispatch Group

Grand Central Dispatch (GCD) is a framework provided by Apple that was released in 2009 with OS X Snow Leopard & iOS 4. It provides easy to use API for the developers to to run background tasks by creating queue in seria...

5
Dispatch Group
J
Joynal Abedin in

DispatchSemaphore

An object that controls access to a resource across multiple execution contexts through use of a traditional counting semaphore. A dispatch semaphore is an efficient implementation of a traditional counting semaphore....

6
DispatchSemaphore
J
Joynal Abedin in

View Hierarchy

// // ViewController.swift // ViewHieararcy // // Created by JOYNAL ABEDIN on 30/7/22. // import UIKit class ViewController: UIViewController { // override func loadView() { // loadV...

3
View Hierarchy
J
Joynal Abedin in

Swift Concurrency: Introduction

What is concurrency? Logic of your app to determine which pieces can run at the same time, and possible in random order, yet still result in a correct implementation of your data flow. Example: You have 10 images on an...

5
Swift Concurrency: Introduction
J
Joynal Abedin in

Modifier- Environment Modifier & Regular Modifier

There are number of modifier which we we use for modify our view. We can apply the same modifier to many views at the same time. Example: if we have six Text() Views in VStack which we can modify applying directly that ...

3
Modifier- Environment Modifier & Regular Modifier