I'm doing an app in swift
, but I had to use a library that is only in objective-c
, so I had to create a file .h
and another file .m
The problem is that from the file .m
I have to call a function of AppDelegate
that is in swift
but I do not know how to call it, because it tells me that AppDelegate
is not declared.
How can I do it?