I would like to add the import/export functions to my Codename App.
The way I need it, It can be done only with native code.
I have that native code in Swift language from the XCode Swift-native version of my app.
I would like to know if I can expose it with the
@objc or @objcMembers
annotations for the Swift methods.
I mean, of course the generated files have to be like it is explained in Codename documentation, but I also would put Swift files in the native folder that contain the real methods (the "officially" interfaced obj-C methods call the Swift ones)
Does this make sense?
Thanks