The Obj-C convention for properties is
@property (nonatomic, getter=isEnabled) BOOL enabled.In Swift Interoperability in Depth at about the 48 minute mark, the speaker talks about using @objc(isEnabled) to change the name of the getter that is exported to Obj-C.
What is the correct syntax for doing this for for a stored property, where I am not supplying the getter or the setter?
The example given on the slide appears to only be applicable to computed properties:
var enabled: Bool {
@objc(isEnabled) get { … }
set { … }
}—Jim