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

Operation & OperationQueue

Operations are an object-oriented way to encapsulate work that you want to perform asynchronously. Operations are designed to be used either in conjunction with an operation queue or by themselves Operations State An o...

65
Operation & OperationQueue
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...

66
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....

58
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...

31
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...

56
Swift Concurrency: Introduction