When I have an ObjC file like "filename.m", I connect it with:
let a = Filename()
but how can I connect if the filename is - "filename+another.m"?
When I have an ObjC file like "filename.m", I connect it with:
let a = Filename()
but how can I connect if the filename is - "filename+another.m"?
As far as I understand, you have the XMPPIQ Framework. And you declare your variable of type XMPPIQ like this:
var test: XMPPIQ = XMPPIQ()
And then you want to add the XMPPIQ+LastActivity.h which isn't a framework nor a class, its an Extension for the class XMPPIQ.
To access the code/methods from that extension, you connect the Obj-C files as usual in the Bridging header, and then just do:
let lastActivity:NSInteger = test.lastActivityQueryTo... // Method from XMPPIQ+LastActivity.m
And don't forget to add the XMPPIQ+LastActivity .m and .h files.