Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saturngod/socket.io-with-ios
(deprecated). Please use https://github.com/socketio/socket.io-client-swift . Node.js socket.io with iOS. It's using https://github.com/pkyeck/socket.IO-objc
https://github.com/saturngod/socket.io-with-ios
Last synced: about 2 months ago
JSON representation
(deprecated). Please use https://github.com/socketio/socket.io-client-swift . Node.js socket.io with iOS. It's using https://github.com/pkyeck/socket.IO-objc
- Host: GitHub
- URL: https://github.com/saturngod/socket.io-with-ios
- Owner: saturngod
- Created: 2012-04-18T03:09:51.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-21T06:02:51.000Z (about 11 years ago)
- Last Synced: 2024-10-31T22:50:43.102Z (about 2 months ago)
- Language: Objective-C
- Homepage:
- Size: 4.32 MB
- Stars: 53
- Watchers: 4
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Socket.io with objective-c example.
- Objective-C code from [https://github.com/pkyeck/socket.IO-objc](https://github.com/pkyeck/socket.IO-objc)
- Socket.io server code from [https://github.com/saturngod/geek_chat](https://github.com/saturngod/geek_chat)##For running the app
Change IP address at sockio-server/views/index.html
```
var socket = io.connect("192.168.1.10:3000");
```Run socket.io chat like
node ./sockio-server/app.js
Change IP address at Objective-C code
```
[_socketIO connectToHost:@"localhost" onPort:3000];
```