Skip to content

Commit b24ad45

Browse files
committed
review add ios interview folder
1 parent 84f93a4 commit b24ad45

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

iOS Interview/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
| Aspect | Clean Architecture | MVVM |
4+
|----------------------------|-------------------------------------------------|--------------------------------------------|
5+
| **Purpose** | Provides a layered approach for organizing code to enhance maintainability, scalability, and testability. | Separates UI logic from business logic to improve the organization of UI-related code. |
6+
| **Components** | Entities, Use Cases, Interface Adapters, Frameworks & Drivers | Model, View, ViewModel |
7+
| **Layers** | Multi-layered structure, with each layer having a specific role (e.g., core, application, infrastructure). | Primarily focuses on three components: Model, View, and ViewModel. |
8+
| **Dependency Management** | Implements the Dependency Rule, where inner layers don’t depend on outer layers. | ViewModel can depend on Model, and View can observe changes in ViewModel. |
9+
| **Flexibility** | Highly flexible; allows changes in any outer layer without affecting core logic. | Mostly flexible for UI changes but less so for core business logic. |
10+
| **Testability** | High testability for all layers, facilitating unit testing across the application. | Easier testing of the ViewModel, as it decouples UI logic from the View. |
11+
| **Usage Context** | Applicable for a wide range of applications, including web, mobile, and enterprise systems. | Commonly used in UI-centric applications, particularly in mobile and desktop frameworks. |
12+
| **Data Binding** | No built-in data binding; data flow is handled explicitly through method calls. | Supports data binding, allowing automatic updates of the View based on changes in the ViewModel. |
13+
| **Complexity** | Can be more complex to implement due to multiple layers and strict rules. | Generally less complex, focusing mainly on UI interactions. |

0 commit comments

Comments
 (0)