65 tips to use Xcode like a PRO 👨🏻💻👩🏽💻 - YouTube
Tools for Xcode
Xcode Lingo
- Xcode templates, projects, targets, schemes and workspaces - YouTube
- Xcode Frameworks and Workspaces - YouTube
Modules, Frameworks, and Libraries
Source: Xcode Modules, Framework and Libraries Comparison - Justin Eghtedari
Module | Framework | Library | |
---|---|---|---|
Can contain resources? (Non-code, e.g. Images etc.) | Yes | Yes | No |
Linking time | Runtime | Runtime | Compile time (static) Runtime (dynamic) |
Example file types | .framework | .framework | .a (static) .dylib (dynamic) |
Can be embedded? | Yes | Yes | No (static) No (dynamic) |
Shared between extensions? | Yes | Yes | No |
Decreases app size? | Maybe | Maybe | No (static) Maybe (dynamic) |
Faster startup? | No | No | Yes (static) |