
Type-safe Resources With SwiftGen
There's a great little library that will generate classes for accessing your resources, making them type-safe. It's very simple to use and it will make your life a lot easier. In this article we'll...

There's a great little library that will generate classes for accessing your resources, making them type-safe. It's very simple to use and it will make your life a lot easier. In this article we'll...

Making sure that your code follows swift coding styles and conventions can be a tedious task. Especially in larger teams. You can easily automate this process by using SwiftLint. SwiftLint is a great...

Coding styles can be a religious topic for some developers. It's one of those topics where everyone has a strong opinion. Opinions aside, once we agree on a coding style and start following it, it's...

This year the logging framework got a bit of an update. The most notable is definitely the ability to add signposts throughout your code with the new os_signpost functions. Signposts are a great tool...

Unified logging system in a relatively new logging mechanism that was introduced with iOS 10. It's blazingly fast and gives you a fine-grained control over your logs. In this article we'll explore...