How can I make an NSManaged public var an optional boolean? When I type the following:
import Foundation
import CoreData
import UIKit
extension SomeClass {
@NSManaged public var isLiked: Bool?
@NSManaged public var isDisliked: Bool?
}
I get the error:
Property cannot be marked @NSManaged because its type cannot be represented in Objective-C
What I want is a property that can be neither liked or disliked.