I'm trying to use SocketRocket for an iOS project, I'm developing... I've been going by the instructions on Socket Rocket - Installing iOS and using the provided chat example as a guide, but when I use:
_webSocket = [[SRWebSocket alloc] initWithURLRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"ws://localhost:9000/chat"]]];
It throws two Mach-O Linker error:
1: "_OBJC_CLASS_$_SRWebSocket", referenced from: Objc-class-ref in HTViewController.o Symbol(s) not found for architecture i386
2: Linker command failed with exit code 1 (use -v to see invocation)
As far as I can tell, I've included the correct frameworks/dylibs (as mentioned on the GitHub) and I've added -ObjC to the "other linker flags" option... Any ideas what I might be missing?