We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e5fe40 + ea20dc8 commit 3ba793aCopy full SHA for 3ba793a
README.md
@@ -7,8 +7,42 @@ For Swift 1.2 use the 1.2 branch.
7
8
Installation
9
============
10
+
11
+Manually (iOS 7+)
12
+-----------------
13
1. Copy the SwiftIO folder into your Xcode project!
14
15
+CocoaPods (iOS 8+)
16
+------------------
17
+Install cocoapods 0.36.0 or later:
18
19
+```
20
+$ gem install cocoapods
21
22
23
+Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`:
24
25
+```ruby
26
+source 'https://github.com/CocoaPods/Specs.git'
27
+platform :ios, '8.0'
28
+use_frameworks!
29
30
+pod 'Socket.IO-Client-Swift', '~> 1.1'
31
32
33
+Install pods:
34
35
36
+$ pod install
37
38
39
+Import in your swift file:
40
41
+```swift
42
+import Socket_IO_Client_Swift
43
44
45
46
API
47
===
48
Constructor
0 commit comments