Swift tip: final keyword
May 29, 2020, 5:15 AM
The final keyword has both compile and runtime effects in a Swift (or mixed) codebase. Let’s quickly check them.
Swift tip: Well-defined Bundles
May 20, 2020, 6:00 AM
When working on Apple’s ecosystem we often need to interact with bundled resources. Storyboards (😫), XIB/NIBs, UIImages, LocalizedStrings, JSON files (used for testing fixtures for example), and so on.
Xcode coffee shortcuts
May 12, 2020, 6:30 AM
I’ve just finished preparing my coffee… ♨!! It’s always a happy and warm moment, but this time it feels special… My blog is finally back to life and I am excited to use this space to share some nerdy stuff.
Swift capture lists: Reference vs Value properties
Apr 8, 2020, 9:00 AM
When dealing with closures the importance of capturing self defining it as [weak] or [unowned] is well known, mainly, to avoid retain cycles.
iOS Dynamic Type with custom fonts
Apr 8, 2019, 3:38 PM
iOS offers a bunch of built-in Accessibility features, such as Voice Over, Switch Control, and Dynamic Type. The last one allows users to define preferred content size, therefore it can provide a much more consistent reading experience for...