Member-only story

An iOS Engineer’s Perspective on SOLID Principles

Kelvin Tan
Swiftly Engineered iOS
7 min readDec 7, 2020
A color-blocked background with the word SOLID in the foreground.
Image credit: Author

SOLID is made up of five design principles meant to make code more understandable, flexible, and maintainable. The principle first appeared in a 2000 paper called “Design Principles and Design Patterns” by Robert Martin, but the acronym SOLID was introduced by Michael Feathers, according to Wikipedia.

I hope when you land yourself on this article, you have the desire to actually want to become a better engineer or write better code. When engineers write code, we should think about the scalability of the code and if the code is readable by different engineers. If we don’t, we’ve got a big problem — which we need to address by following the SOLID principles.

Principle #1: Single Responsibility

Each class should have only one responsibility

By looking at the line of code, we could probably somehow measure how many responsibilities actually lie in the class. With that, I’m taking different examples from different sources to better help us measure how many lines of code we should have.

  • According to Code Complete, a study from 1996 found that classes with more routines had more defects.
  • According to Ben Nadel’s “Object Calisthenics,” classes over 50 lines usually do more than one thing, which makes them harder to understand and harder to reuse. Fifty-line classes have the added benefit of being visible on one screen without scrolling, which makes them easier to grasp quickly.
  • According to one of the discussions on Stack Exchange, 200 lines is a good guideline.
  • SwiftLint, a tool that help enforce the Swift style by using the default configuration, believes a class should have less than 500 lines of code. (I’m aware you may alter the configuration of such settings.)

As for how many lines of code you should have in your project, I’ll leave it to your own jurisdiction, as I believe we know best our own project. I trust we should know how long our code can be, but I definitely like the idea of keeping it at less than 200 lines.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Swiftly Engineered iOS
Swiftly Engineered iOS

Published in Swiftly Engineered iOS

📱🚀 Your passport to iOS development excellence, powered by Swift! Dive into top-notch tutorials, expert insights, and the latest iOS trends. Whether you’re a newbie or a seasoned pro, join our dynamic Swift community and craft remarkable iOS experiences.

Kelvin Tan
Kelvin Tan

Written by Kelvin Tan

Father, husband, software engineer. Building software and building a family, one line of code and one moment at a time. 🚀💻💙 http://ko-fi.com/kelvintanzy

Responses (5)

Write a response