From 58362f6352d7f63f530305522f5b18898950e3df Mon Sep 17 00:00:00 2001 From: Erik Date: Thu, 12 Mar 2015 10:27:37 -0400 Subject: [PATCH] clean up readme --- README.md | 33 ++++++--------------------------- 1 file changed, 6 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 5d0948f..63b0744 100644 --- a/README.md +++ b/README.md @@ -12,14 +12,8 @@ Manually (iOS 7+) ----------------- 1. Copy the SwiftIO folder into your Xcode project! -CocoaPods (iOS 8+) +CocoaPods 0.36.0 or later (iOS 8+) ------------------ -Install cocoapods 0.36.0 or later: - -``` -$ gem install cocoapods -``` - Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`: ```ruby @@ -42,7 +36,6 @@ Import in your swift file: import Socket_IO_Client_Swift ``` - API === Constructor @@ -105,6 +98,11 @@ socket.on("ackEvent") {data, ack in println("Got ackEvent") } + // data is an array + if let int = data?[1] as? Int { + println("Got int") + } + socket.emitWithAck("ackTest", "test").onAck {data in println(data?[0]) } @@ -118,25 +116,6 @@ socket.on("jsonTest") {data, ack in } } -// Event items are passed by an array -socket.on("multipleItems") {data, ack in - if data == nil { - return - } - - if let str = data![0] as? String { - println(str) - } - - if let arr = data![1] as? [Int] { - println(arr) - } - - if let obj = data![4] as? NSDictionary { - println(obj["test"]) - } -} - // Connecting socket.connect() ```