Since the introduction of Swift in 2014 and over five major releases, it has matured a lot. The tooling is better and many teams have either completely switched to Swift and away from Objective-C, or are mixing between both with all new code being written in Swift.
Swift leverages programming patterns and language features that encourage writing safer code that’s also easier to understand and maintain, which sounds amazing to anyone using the 35-year-old alternative, Objective-C.
ABI Stability
Up until Swift 5, the lack of ABI stability meant that to be able to use Swift in your app it was necessary to ship the Swift runtime libraries with the app bundle. This added around 5 MB to the size of your app. While not an insignificant bump in size for smaller apps, most apps have accepted this tax in order to be able to use Swift.
Starting from Swift 5, Swift’s ABI is stable, meaning that the Swift runtime libraries can be shipped as part of the operating system, eliminating the need to ship it with every single app.
What About Binary Frameworks?
People that ship binary frameworks rather than apps, including us at Instabug, were eager to start using Swift. To be able to distribute binary frameworks in Swift, ABI stability is necessary but not sufficient. The other component needed is module stability.
So what’s module stability? This excerpt from the Swift blog explains it:
Module stability isn’t available in Swift 5 and is currently under active development. So that means we can’t ship Swift binary frameworks? Well, not exactly.
Using Objective-C as the Interface
We were not sure if this is actually possible and safe to do though, so we asked Jordan Rose, an Apple engineer working on Swift.
And he confirmed that this is actually possible!
So we’re going to do exactly that!?
Conclusion
With Swift 5, it’s not possible yet to ship binary frameworks that are purely written in Swift, but shipping frameworks that contain Swift with an Objective-C wrapper as an interface is possible as a substitute for module stability and will be forward-compatible with future versions of Swift.
We love Objective-C and it has served us very well during all those years, but we’re excited to finally start using Swift!
Learn more:
- Using Instabug in a SwiftUI-based iOS app
- Create UIViews Constraints Programmatically Using PureLayout
- How We Automate Our iOS Workflow at Instabug Using CircleCI
- How We Refactored Our Monolithic iOS Framework
Instabug empowers mobile teams to maintain industry-leading apps with mobile-focused, user-centric stability and performance monitoring.
Visit our sandbox or book a demo to see how Instabug can help your app