CoreStoreObjectiveCType

public protocol CoreStoreObjectiveCType : AnyObject

CoreStoreObjectiveCTypes are Objective-C accessible classes that represent CoreStore’s Swift types.

  • The corresponding Swift type

    Declaration

    Swift

    associatedtype SwiftType
  • The bridged Swift instance

    Declaration

    Swift

    var bridgeToSwift: SwiftType { get }
  • Initializes this instance with the Swift instance to bridge from

    Declaration

    Swift

    init(_ swiftValue: SwiftType)