Esplorando nuove idee, tendenze, problemi, soluzioni e pratiche per lo sviluppo professionale e personale.
-
Swift Package Manager: A Developer’s Guide
Swift Package Manager, or SPM, is a dependency management introduced by Apple in 2015 as part of Swift 2.2. Since then, it has evolved significantly. It has…
-
Troubleshooting MacBook Video Lag Issues
Recently I had a very weird behaviours on some videos imported on my MacBook Pro 2018 with Touch Bar and since I have a very high specs Mac I was..
-
Optimize Debugging in Xcode: ‘v/vo’ vs ‘po/p’ in LLDB
Most of the times developers want to use v instead of po/p in lldb as it’s faster and more reliable way to get your info.
-
Clean Up Your Git: Remove Merged Branches
Sometimes happens that the local repository is not very well maintained for many reasons and so the need to delete all local branches that have already be..
-
Distribute your iOS code as XCFramework
To distribute code in binary form I suggest to create an XCFramework artifact that contains the binaries. This will allow you to make your code..