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
0


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
0


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
0


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
0


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
0


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
0


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
0


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
0


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
0


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
0


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
0
bottom of page