Kotlin/Native 与 Swift/Objective-C 互操作

    Kotlin/Native provides bidirectional interoperability with Objective-C. Objective-C frameworks and libraries can be used in Kotlin code if properly imported to the build (system frameworks are imported by default). See e.g. “Using cinterop” in . A Swift library can be used in Kotlin code if its API is exported to Objective-C with . Pure Swift modules are not yet supported.

    Kotlin modules can be used in Swift/Objective-C code if compiled into a framework (see “Targets and output kinds” section in Gradle plugin documentation). See for an example.

    Mappings

    The table below shows how Kotlin concepts are mapped to Swift/Objective-C and vice versa.

    Objective-C classes are imported into Kotlin with their original names. Protocols are imported as interfaces with Protocol name suffix, i.e. @protocol Foo -> interface FooProtocol. These classes and interfaces are placed into a package specified in build configuration (platform.* packages for preconfigured system frameworks).

    The names of Kotlin classes and interfaces are prefixed when imported to Objective-C. The prefix is derived from the framework name.

    Initializers

    Swift/Objective-C initializers are imported to Kotlin as constructors and factory methods named create. The latter happens with initializers declared in the Objective-C category or as a Swift extension, because Kotlin has no concept of extension constructors.

    Kotlin constructors are imported as initializers to Swift/Objective-C.

    Top-level functions and properties

    Top-level Kotlin functions and properties are accessible as members of special classes. Each Kotlin file is translated into such a class. E.g.

    can be called from Swift like

    1. MyLibraryUtilsKt.foo()

    Method names translation

    Generally Swift argument labels and Objective-C selector pieces are mapped to Kotlin parameter names. Anyway these two concepts have different semantics, so sometimes Swift/Objective-C methods can be imported with a clashing Kotlin signature. In this case the clashing methods can be called from Kotlin using named arguments, e.g.:

    1. [player moveTo:LEFT byMeters:17]
    2. [player moveTo:UP byInches:42]

    in Kotlin it would be:

    1. player.moveTo(LEFT, byMeters = 17)
    2. player.moveTo(UP, byInches = 42)

    Errors and exceptions

    Kotlin has no concept of checked exceptions, all Kotlin exceptions are unchecked. Swift has only checked errors. So if Swift or Objective-C code calls a Kotlin method which throws an exception to be handled, then the Kotlin method should be marked with a @Throws annotation. In this case all Kotlin exceptions (except for instances of Error, RuntimeException and subclasses) are translated into a Swift error/NSError.

    Note that the opposite reversed translation is not implemented yet: Swift/Objective-C error-throwing methods aren’t imported to Kotlin as exception-throwing.

    Members of Objective-C categories and Swift extensions are imported to Kotlin as extensions. That’s why these declarations can’t be overridden in Kotlin. And the extension initializers aren’t available as Kotlin constructors.

    Kotlin singletons

    NSNumber

    Kotlin primitive type boxes are mapped to special Swift/Objective-C classes. For example, kotlin.Int box is represented as KotlinInt class instance in Swift (or ${prefix}Int instance in Objective-C, where prefix is the framework names prefix). These classes are derived from NSNumber, so the instances are proper NSNumbers supporting all corresponding operations.

    NSNumber type is not automatically translated to Kotlin primitive types when used as a Swift/Objective-C parameter type or return value. The reason is that NSNumber type doesn’t provide enough information about a wrapped primitive value type, i.e. NSNumber is statically not known to be a e.g. Byte, Boolean, or Double. So Kotlin primitive values should be cast to/from NSNumber manually (see ).

    NSMutableString

    NSMutableString Objective-C class is not available from Kotlin. All instances of NSMutableString are copied when passed to Kotlin.

    Collections

    Kotlin collections are converted to Swift/Objective-C collections as described in the table above. Swift/Objective-C collections are mapped to Kotlin in the same way, except for NSMutableSet and NSMutableDictionary. NSMutableSet isn’t converted to a Kotlin MutableSet. To pass an object for Kotlin MutableSet, you can create this kind of Kotlin collection explicitly by either creating it in Kotlin with e.g. mutableSetOf(), or using the KotlinMutableSet class in Swift (or ${prefix}MutableSet in Objective-C, where prefix is the framework names prefix). The same holds for MutableMap.

    Kotlin function-typed objects (e.g. lambdas) are converted to Swift functions / Objective-C blocks. However there is a difference in how types of parameters and return values are mapped when translating a function and a function type. In the latter case primitive types are mapped to their boxed representation. Kotlin return value is represented as a corresponding Unit singleton in Swift/Objective-C. The value of this singleton can be retrieved in the same way as it is for any other Kotlin object (see singletons in the table above). To sum the things up:

    1. fun foo(block: (Int) -> Unit) { ... }

    would be represented in Swift as

    and can be called like

    1. foo {
    2. bar($0 as! Int32)
    3. return KotlinUnit()
    4. }

    Generics

    Objective-C supports “lightweight generics” defined on classes, with a relatively limited feature set. Swift can import generics defined on classes to help provide additional type information to the compiler.

    Generic feature support for Objc and Swift differ from Kotlin, so the translation will inevitably lose some information, but the features supported retain meaningful information.

    To Use

    Generics are currently not enabled by default. To have the framework header written with generics, add an experimental flag to the compiler config:

    1. compilations.main {
    2. outputKinds("framework")
    3. extraOpts "-Xobjc-generics"
    4. }

    Limitations

    Objective-C generics do not support all features of either Kotlin or Swift, so there will be some information lost in the translation.

    Generics can only be defined on classes, not on interfaces (protocols in Objc and Swift) or functions.

    Nullability

    Kotlin and Swift both define nullability as part of the type specification, while Objc defines nullability on methods and properties of a type. As such, the following:

    1. fun myVal():T
    2. }

    will (logically) look like this:

    1. class Sample<T>(){
    2. fun myVal():T?
    3. }

    To mitigate this, when defining your generic classes, if the generic type should never be null, provide a non-null type constraint:

    That will force the Objc header to mark myVal as non-null.

    Variance

    Objective-C allows generics to be declared covariant or contravariant. Swift has no support for variance. Generic classes coming from Objective-C can be force-cast as needed.

    1. data class SomeData(val num:Int = 42):BaseData()
    2. class GenVarOut<out T:Any>(val arg:T)
    1. let variOut = GenVarOut<SomeData>(arg: sd)
    2. let variOutAny : GenVarOut<BaseData> = variOut as! GenVarOut<BaseData>

    Constraints

    In Kotlin you can provide upper bounds for a generic type. Objective-C also supports this, but that support is unavailable in more complex cases, and is currently not supported in the Kotlin - Objective-C interop. The exception here being a non-null upper bound will make Objective-C methods/properties non-null.

    When writing Kotlin code, an object may need to be converted from a Kotlin type to the equivalent Swift/Objective-C type (or vice versa). In this case a plain old Kotlin cast can be used, e.g.

    1. val nsArray = listOf(1, 2, 3) as NSArray
    2. val string = nsString as String
    3. val nsNumber = 42 as NSNumber

    Subclassing

    Subclassing Kotlin classes and interfaces from Swift/Objective-C

    Kotlin classes and interfaces can be subclassed by Swift/Objective-C classes and protocols.

    Subclassing Swift/Objective-C classes and protocols from Kotlin

    Swift/Objective-C classes and protocols can be subclassed with a Kotlin final class. Non-final Kotlin classes inheriting Swift/Objective-C types aren’t supported yet, so it is not possible to declare a complex class hierarchy inheriting Swift/Objective-C types.

    Normal methods can be overridden using the override Kotlin keyword. In this case the overriding method must have the same parameter names as the overridden one.

    Sometimes it is required to override initializers, e.g. when subclassing UIViewController. Initializers imported as Kotlin constructors can be overridden by Kotlin constructors marked with the @OverrideInit annotation:

    1. class ViewController : UIViewController {
    2. @OverrideInit constructor(coder: NSCoder) : super(coder)
    3. ...
    4. }

    The overriding constructor must have the same parameter names and types as the overridden one.

    To override different methods with clashing Kotlin signatures, you can add a @Suppress("CONFLICTING_OVERLOADS") annotation to the class.

    By default the Kotlin/Native compiler doesn’t allow calling a non-designated Objective-C initializer as a super(...) constructor. This behaviour can be inconvenient if the designated initializers aren’t marked properly in the Objective-C library. Adding a disableDesignatedInitializerChecks = true to the .def file for this library would disable these compiler checks.

    See INTEROP.md for an example case where the library uses some plain C features (e.g. unsafe pointers, structs etc.).

    Unsupported

    Some features of Kotlin programming language are not yet mapped into respective features of Objective-C or Swift. Currently, following features are not properly exposed in generated framework headers:

    • suspend functions
    • inline classes (arguments are mapped as either underlying primitive type or id)
    • Kotlin subclasses of Objective-C classes