TCA, The Composable Architecture
For completeness, I will mention one of the latest additions to the collection of third-party “architectures” for iOS and Apple development. TCA, The Composable Architecture is a framework implemented as a library developed by PointFree: https://www.pointfree.co.
Unfortunately, TCA is not fully open source nor fully explained by a textbook when it comes to its documentation, as the PointFree business model is based on a subscription model. Some information, however, is available publicly, in particular on GitHub: https://github.com/pointfreeco/swift-composable-architecture
TCA is conceptually based on Redux, a software pattern used in Javascript frontend development, normally used with React.
Redux and TCA are two state management frameworks used in software development to manage and centralize the state of an application, making it predictable and easier to understand. Redux was originally designed for React applications in the...