Closed ryohey closed 5 years ago
This fix allows PopoverExampleObjc to be built with Xcode 10.2
Because of swift4 behavior we have to add @objc to each classes and methods to use swift classes in Objective-C. We can use @objcMembers instead of adding @objc to all each methods.
@objc
@objcMembers
Thanks PR!
This fix allows PopoverExampleObjc to be built with Xcode 10.2
Because of swift4 behavior we have to add
@objc
to each classes and methods to use swift classes in Objective-C. We can use@objcMembers
instead of adding@objc
to all each methods.