can help to transform individual classes, I would do it for every classes in my library
j
Jeff Lockhart
03/21/2023, 2:51 PM
Kotlin types are prefixed in Objective-C with a prefix derived from the framework name. But in Swift, the prefix is removed, e.g. (for a framework Foo):
Because Swift has module namespacing, ObjC's convention for type prefixing is optional in Swift.
If you run into a situation where two modules used in the same file have conflicting types, you can use a local typealias to disambiguate, e.g.: