Recent Posts

Recent Posts


Swift

09 Apr 2021
iOS Swift Interviews
  1. Structs vs. Classes
More...

Concurrency

22 Feb 2021
Interviews iOS Swift Concurrency

Concurrency and Grand Central Dispatch

Concurrency lets you take advantage of the fact that your device has multiple CPU cores. To make use of these cores, you will need to use multiple threads. However, threads are a low-level tool, and managing threads manually in an efficient manner is extremely difficult.

More...

Error Handling Swift

20 Feb 2021
iOS Swift gist Error Handling

Error Handling

Here is simple example how to use error handling in swift.

More...