Tagged
workflow
Article
Clear and searchable logging in Swift with OSLog
5 minute read
Logging is a useful tool for diagnosing issues and working out what an app is doing. We will explore Apple's currently recommended way of logging via OSLog, covering how to use it and managing its differences when compared to other logging approaches.
Snippet
Simpler categories when using OSLog
1 minute read
Storing OSLog instances as an extension in order to provide them using a shorthand syntax.
Article
Create Xcode file templates and share them with your team
4 minute read
When creating new files in Xcode the built-in templates often contain code we immediately delete or need to alter. We will explore the process of creating our own templates and how to go about sharing them with the rest of our team members.