top of page


Generics reloaded..
Missed the beginning? Start from Generics in Swift: A Comprehensive Guide to get the full picture! Generic Subscripts Subscripts allow...
arda doğantemur
13 min read


Generics in Swift: A Comprehensive Guide
Generics are one of the most powerful features of Swift, allowing you to write flexible and reusable code. Whether you're a beginner or...
arda doğantemur
9 min read


Memory Management in Swift: ARC, Weak, and Unowned References
Memory management is a crucial aspect of any programming language, and Swift handles it gracefully through a mechanism called Automatic...
arda doğantemur
3 min read


Conclusion
Swift is a popular and powerful programming language that is widely used in the development of iOS, macOS, watchOS, and tvOS...
arda doğantemur
4 min read


Chapter 7: iOS Development with Swift.
UIKit Framework The UIKit framework is a collection of classes and functions for building user interfaces in iOS applications. It...
arda doğantemur
3 min read


Chapter 6: Advanced Swift!
Concurrency and multithreading Concurrency is the ability to run multiple tasks concurrently in a program. Multithreading is a technique...
arda doğantemur
2 min read


Chapter 5: Intermediate Swift!
Generics Generics are a powerful feature of Swift that allow us to write reusable code. With generics, we can write functions, types, and...
arda doğantemur
3 min read


Chapter 4: Object-Oriented Programming
Object-oriented programming (OOP) is a programming paradigm that organizes code into objects, which contain data and methods. In Swift,...
arda doğantemur
6 min read


Chapter 3: Data Types and Advanced Concepts
Optionals Optionals are a special feature in Swift that allow variables and constants to have a value or no value at all. They are...
arda doğantemur
3 min read


Chapter 2: Basic Syntax
Variables and Constants In Swift, variables and constants are used to store values that can be used throughout the program. Variables are...
arda doğantemur
2 min read


Chapter 1: Introduction to Swift
What is Swift? Swift is a general-purpose programming language developed by Apple Inc. in 2014. It was designed to replace Objective-C as...
arda doğantemur
2 min read
bottom of page