Categories
iOS Development

Clean Code for Swift – Chapter 3: Functions

What the func? Functions!! They do exactly what you tell them to do. They are the building blocks for modern day applications. If you try to make an app without using a function, good luck. How do we make functions clean? Keep Them Small According to “Uncle Bob” he says that function should rarely ever […]

Categories
iOS Development

Clean Code for Swift – Chapter 2: Meaningful Names

Say what you mean, and mean what you say. Chapter 2 is all about naming! Names of variables, functions, classes, objects, protocols (interfaces), everything! Why is naming so important? Everything in software has a name, from the iterator variable in a for loop to the package you’re importing into your project. The name tells you […]

Categories
iOS Development

Clean Code for Swift – Chapter 1: Clean Code

What is Clean Code?