I need to implement wamp v1 protocol in my swift project. I googled for library MDWamp (v 1.1.0). Also with MDWamp i need SocketRocket (v 0.3.1-beta2). All installed via cocoapods like this:
use_frameworks!
target 'webs' do
pod 'SocketRocket', '~> 0.3.1-beta2'
pod 'MDWamp', '~> 1.1.0'
end
Then, somewhere in my project i need call the call
function from MDWamp that 100% exist in MDWamp.h file.
But when i try to type:
var wamp = MDWamp(... // init here
wamp.call(...)
no autocomplete happened. It's weird. I decided to go to MDWamp
class (cmd + click on MDWamp
class) and search the call
function and... i didn't found it!
Any ideas why the call
function not converted to swift?