I have a Swift Project, and I'm using bridging-header to call some Obj-c Classes and it works great. and I can easily use Obj-C classes alongside Swift.
But now, I have problem calling one of my Swift classes from Obj-C.
I mean I want to call fun x
from y
class, which is a swift class, from another obj-c class in my project.
I've used 'y-Swift.h' and some other methods, but non of them worked. :(