After following the instructions for importing the framework using Carthage, then adding the framework in 'Linked Frameworks and Libraries', is there something else I need to do/add/import?
I've got import SocketIO in my class but when trying let socket = SocketIOClient(...) I get 'SocketIOClient' is unavailable: cannot find Swift declaration for this class.
The only thing available seems to be SocketIOClientStatus. Probably me being stupid.
After following the instructions for importing the framework using Carthage, then adding the framework in 'Linked Frameworks and Libraries', is there something else I need to do/add/import?
I've got
import SocketIO
in my class but when tryinglet socket = SocketIOClient(...)
I get'SocketIOClient' is unavailable: cannot find Swift declaration for this class
.The only thing available seems to be
SocketIOClientStatus
. Probably me being stupid.