简体   繁体   中英

Bridging an array of enums from Swift to Objective-C

Since Swift 1.2 it's been possible to automatically convert enums in Swift to Objective-C. However, as far as I can tell, it is not possible to convert an array of enums. Is this true?

So, this is possible:

@objc public enum SomeEnumType: Int {
    case OneCase
    case AnotherCase
}

But this is not:

public func someFunc(someArrayOfEnums: Array<SomeEnumType>) -> Bool {
    return true
}

Can anyone verify this? And how would you recommend working around this? One approach would be to have two method declarations eg:

// This will not automatically get bridged.
public func someFunc(someArrayOfEnums: Array<SomeEnumType>) -> Bool {
    return true
}

// This will automatically get bridged.
public func someFunc(someArrayOfEnums: Array<Int>) -> Bool {
    return true
}

But this is polluting the Swift interface. Any way to hide the second function declaration for any Swift consumers?

It seems, we cannot expose Array<SomeEnumType> parameter to Obj-C even if SomeEnumType is @objc .

As a workaround, how about:

@objc(someFunc:)
func objc_someFunc(someArrayOfEnums: Array<Int>) -> Bool {
    return someFunc(someArrayOfEnums.map({ SomeEnumType(rawValue: $0)! }))
}

func someFunc(someArrayOfEnums: Array<SomeEnumType>) -> Bool {
    return true
}

Unfortunately an enum is not transferrable to Swift from Objective-C, it needs to be an NS_ENUM. I had the similar experience to you. The workaround I did was to create an Objective-C category that contains an NS_ENUM and there I transfer the values from the framework enum to my own NS_ENUM.

Import the category in your bridging header and you should be able to use the enum as you normally would do.

Something like this:

typedef NS_ENUM(NSUInteger, ConnectionStatus) {
    ConnectionStatusIdle
}

- (ConnectionStatus)connectionStatus {
    if [self getConnectionStatus] == WF_SENSOR_CONNECTION_STATUS_IDLE {
        return ConnectionStatusIdle
    }
}

Then you should be able to use it like this:

switch myObject.connectionStatus() {
    case .Idle:
        // do something
        break
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM