When it comes to organizing files in a project, there are two most known ways. Organizing code files by type and by feature.
Organizing code by type
Organizing code by type is ok for small projects but it's not a good practice for big ones.
In this way, you put all Models in one folder, all Views in another folder, all Controllers in the third folder, etc.
Just imagine you have tons of files and folders organized by type, and when you work on a single feature, you have to open all of the folders. Which can confuse you and you can get lost many times while you scroll through files.
Something like this:
- AppDelegate
- View Controllers
- Feature 1 VCs
- Feature 2 VCs
- Feature 3 VCs
- Models
- Feature 1 Models
- Feature 2 Models
- Feature 3 Models
- Views
- Feature 1 Views
- Feature 2 Views
- Feature 3 Views
- Extensions
- Feature 1 Extensions
- Feature 2 Extensions
- Feature 3 Extensions
- Networking
- Resources
Organizing code by feature (intent)
Organizing code by feature (intent) is the best practice for big projects and big teams. You put everything related to the feature in a folder, and while you work on that feature, you don't have to open all other folders (groups).
Cause usually teams work on a single feature, and they focus only on a single folder or group of files. They don't necessarily have to know about other features and files.
It looks something like this:
- AppDelegate
- Features
- Feature 1
- View Controllers
- Models
- Views
- Logic
- Feature 2
- View Controllers
- Models
- Views
- Logic
- Networking
- Resources
Also, to mention, this practice and technique (organizing project by feature) are implemented by the biggest companies around the world. So, they divide their teams by the features of the project, each team works on a specific feature. Besides that, when you work with git
, it reduce the chance of conflicts when merging and rebasing.