Swift tip: final keyword
The final keyword has both compile and runtime effects in a Swift (or mixed) codebase. Let’s quickly check them.
The final keyword has both compile and runtime effects in a Swift (or mixed) codebase. Let’s quickly check them.
When working on Apple’s ecosystem we often need to interact with bundled resources. Storyboards (😫), XIB/NIBs, UIImages, LocalizedStrings, JSON files (used f...
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 ex...
When dealing with closures the importance of capturing self defining it as [weak] or [unowned] is well known, mainly, to avoid retain cycles.
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 co...