Circular References Between Swift and Objective-C Caesar Wirth describes some of the challenges that arise when working in a mixed Swift and Objective-C codebase, and shows us how he deals with them. Some useful advice here. . Posted on March 3, 2018 #interoperability #objective-c
Friday Q&A - Swift.Unmanaged One of Swift’s great strengths is how well it interoperates with C code. In one of his regular Friday Q&A posts, Mike Ash looks at a key component of this interoperability - Swift’s Unmanaged struct. As Mike shows us, the Unmanaged struct is the API we need when we want to convert Swift object references to and from raw C pointers. Posted on September 5, 2017 #interoperability #c