corin8823 / Popover

Popover is a balloon library like Facebook app. It is written in pure swift.
MIT License
2.09k stars 326 forks source link

Add support for Objective-C #123

Closed ryohey closed 5 years ago

ryohey commented 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.

corin8823 commented 5 years ago

Thanks PR!