Swift [1,2] conforms to AnyObject but [Enum.a, Enum.b] does not

前端 未结 1 1084
攒了一身酷
攒了一身酷 2020-12-20 14:36

I\'m in AppDelegate, trying to pass a reply to a WatchKit Extension Request. I cannot use an array of enums as the value in a Dictionary whose values are typed as AnyObject.

相关标签:
1条回答
  • 2020-12-20 15:03

    AnyObject exists for compatibility with Objective-C. You can only put objects into an [AnyObject] array that Objective-C can interpret. Swift enums are not compatible with Objective-C, so you have to convert them to something that is.

    var x: AnyObject = [0, 1] works because Swift automatically handles the translation of Int into the type NSNumber which Objective-C can handle. Unfortunately, there is no such automatic conversion for Swift enums, so you are left to do something like:

    var y: AnyObject = [E.a.rawValue, E.b.rawValue]
    

    This assumes that your enum has an underlying type that Objective-C can handle, like String or Int.

    Another example of something that doesn't work is an optional.

    var a: Int? = 17
    var b: AnyObject = [a]  // '[Int?]' is not convertible to 'AnyObject'
    

    See Working with Cocoa Data Types for more information.

    0 讨论(0)
提交回复
热议问题