I have an intermediate knowledge of swift on macOS (thanks to these tutorials!) but lack the building block knowledge to do this:
A lightweight app that runs on the menu bar (status bar). It periodically fetches web data (say every hour) and stores it. User can launch the “full” app from the menu bar app, or he can launch it from the usual Applications icon.
The menu bar app and main app share much of the same data manipulation code, but I don’t want to have the full app in memory all the time, since it’s UI heavy
I’d welcome pointers to how to split this app up. I’ve a feeling it involves CocoaPods but I lack enough knowledge about them to know if they act like Windows DLLs or not (ie loaded when needed)?
An analogous app would be Time Machine.
Thanks!