Tag: Open Source
All the articles with the tag "Open Source".
-
Improve build times by extracting 3rd party tooling to processing script.
A lot has been written about improving Swift compile times, but the compiler and linker are just part of the equation that slows down our development cycle.
-
Adding support for versioning and migration to your Codable models.
`Codable` is a great protocol for automating simple model persistence, but it lacks support for any kind of versioning or migrating the data from older...
-
Finding exact difference between 2 instances
Have you ever written tests? Usually, they use equality asserts, e.g. XCTAssertEqual, what happens if the object isn't equal? Xcode throws a wall of text at...
-
How to find retain cycles and memory leaks sooner
LifetimeTracker can surface retain cycle / memory issues right as you develop your application, and it will surface them to you immediately, so you can find...
-
Stop weak-strong dance
Closures in Swift are extremely useful, they are interchangeable with functions and that creates a lot of opportunities for useful use-cases. One thing we...
-
How hard would it be to adjust your iOS app in real-time?
Iterating over design that needs to be reflected in code can be tedious and time-consuming. Typically the designer works in graphics editing software and...