You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SwiftyJSON makes it easy to deal with JSON data in Swift.
6
5
@@ -77,29 +76,10 @@ if let userName = json[999999]["wrong_key"]["wrong_name"].string {
77
76
78
77
## Requirements
79
78
80
-
- iOS 7.0+ / OS X 10.9+
81
-
- Xcode 7
79
+
Swift 3
82
80
83
81
## Integration
84
82
85
-
#### CocoaPods (iOS 8+, OS X 10.9+)
86
-
You can use [Cocoapods](http://cocoapods.org/) to install `SwiftyJSON`by adding it to your `Podfile`:
87
-
```ruby
88
-
platform :ios, '8.0'
89
-
use_frameworks!
90
-
91
-
target 'MyApp'do
92
-
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
93
-
end
94
-
```
95
-
Note that this requires CocoaPods version 36, and your iOS deployment target to be at least 8.0:
96
-
97
-
#### Carthage (iOS 8+, OS X 10.9+)
98
-
You can use [Carthage](https://github.com/Carthage/Carthage) to install `SwiftyJSON` by adding it to your `Cartfile`:
99
-
```
100
-
github "SwiftyJSON/SwiftyJSON"
101
-
```
102
-
103
83
#### Swift Package Manager
104
84
You can use [The Swift Package Manager](https://swift.org/package-manager) to install `SwiftyJSON` by adding the proper description to your `Package.swift` file:
105
85
```swift
@@ -113,16 +93,6 @@ let package = Package(
113
93
]
114
94
)
115
95
```
116
-
117
-
Note that the [Swift Package Manager](https://swift.org/package-manager) is still in early design and development, for more infomation checkout its [GitHub Page](https://github.com/apple/swift-package-manager)
118
-
119
-
#### Manually (iOS 7+, OS X 10.9+)
120
-
121
-
To use this library in your project manually you may:
122
-
123
-
1. for Projects, just drag SwiftyJSON.swift to the project tree
124
-
2. for Workspaces, include the whole SwiftyJSON.xcodeproj
0 commit comments