LDK
LDK

Reputation: 2575

Objective c websockets for desktop application

All of the Objective c websocket libraries that I've found seem to be specific for iOS and give linking problems when I try to use them in my desktop app.

I've tried:

http://code.google.com/p/unitt/wiki/UnittWebSocketClient

https://github.com/esad/zimt

Are there Objective c libraries that work for desktop apps? Alternatively how difficult would it be to modify zimt to work on the desktop?

EDIT: I ended up using: https://github.com/erichocean/cocoa-websocket

Upvotes: 1

Views: 489

Answers (1)

Jim
Jim

Reputation: 73966

I just tried zimt and it was trivial to integrate into a test OS X project. I followed the installation instructions, then set the project to be Mac rather than iOS and Intel rather than ARM.

If you are having difficulty getting it working, then submit that as a question, including any error messages you get and any incorrect behaviour you see.

Upvotes: 1

Related Questions