7 followers
Welcome! In this blog, I share knowledge about iOS Development with Swift.
Subscribe to my newsletter and never miss my upcoming articles
Almost all the time is a bad decision to use Strings in conditionals because you will have no help from the compiler to alert you when you typed them wrong. Throw the first stone the developer who never lost hours of work debugging because the code d...
I already wrote about naming conventions in a past article but I wanna explore a little more because I think this topic is very important for every developer. The "One word per concept" rule Consider the following code: class UserManager { func ...
Today I learned something very useful about code blocks on Hashnode (and it probably works on other blogging platforms too) that I immediately wanted to share with the community. To explain this let me first show the result without the language tag: ...
Continuing the powerful coding practices series, today I will talk with two simple concepts that can greatly improve the readability of our code. Maintaining proper indentation A source file is a hierarchy rather like an outline. Each level of this ...
Everyone has their favorite software to do a specific job. As developers, we have some mandatory ones like code editors, task managers, source control, etc. Today I decided to list my current favorite tools that I use every day to do my job. I think...
Functions are one of the best and most essential tools we have to do our job as developers. Probably we all learned to use them to remove duplicated code, grouping instructions together to easy reuse. Classes are generally used to group related prope...