Skip to main content
Author

Görkem Güray

Industrial Automation Engineer

Recent

Day 13 - Swift Protocol and Extension

·3478 words·17 mins
How to Create and Use Swift Protocol? #Protocol is similar to contracts in Swift. It allows us to define what kind of functions we expect a data type to support, so we can follow those rules in the rest of our code.

Day 12 - Swift Classes and Inheritance

·3044 words·15 mins
Classes are quite similar to Struct at first glance. With Classes we can create new data types with their own properties and methods.