Swift Unwrapped

Logo

Discussions on the Swift programming language and other projects at Swift.org

Twitter: @swift_unwrapped

Feed: RSS

Hosted by Jesse Squires and JP Simard

04: Bridging with Objective-C

27 March 2017


Swift has evolved since 1.x to have a fluctuating amount of magic/implicit bridging from ObjC and Foundation types, sometimes going in the opposite direction towards very explicit type conversions.

We’ve started seeing more of what the “steady state” looks like as Swift 3.x/4.x development matures.

In the early days, Swift users would need deep compiler internal implementation details to know which NSNumber-representable type could implicitly convert. As of SE-0139 that’s a lot clearer.

The subtleties of unenforced protocol conformance semantics: https://oleb.net/blog/2016/12/protocols-have-semantics/

Proposals on bridging