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
[Cocoapods](https://github.com/CocoaPods/CocoaPods)is supported too, if you really don't like Carthage. ;)
47
51
48
52
You can of course also just include this framework manually into your project by downloading it or by using git submodules.
49
53
@@ -57,6 +61,24 @@ github "Flinesoft/CSVImporter"
57
61
58
62
And run `carthage update`. Then drag & drop the HandySwift.framework in the Carthage/build folder to your project. Also do the same with the dependent frameworks `Filekit` and `HandySwift`. Now you can `import CSVImporter` in each class you want to use its features. Refer to the [Carthage README](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application) for detailed / updated instructions.
59
63
64
+
### CocoaPods
65
+
66
+
Add the line `pod 'CSVImporter'` to your target in your `Podfile` and make sure to include `use_frameworks!`
67
+
at the top. The result might look similar to this:
68
+
69
+
```Ruby
70
+
platform :ios, '8.0'
71
+
use_frameworks!
72
+
73
+
target 'MyAppTarget'do
74
+
pod 'CSVImporter', '~> 1.1'
75
+
end
76
+
```
77
+
78
+
Now close your project and run `pod install` from the command line. Then open the `.xcworkspace` from within your project folder.
79
+
Build your project once (with `Cmd+B`) to update the frameworks known to Xcode. Now you can `import CSVImporter` in each class you want to use its features.
80
+
Refer to [CocoaPods.org](https://cocoapods.org) for detailed / updates instructions.
81
+
60
82
## Usage
61
83
62
84
Please have a look at the UsageExamples.playground for a complete list of features provided.
0 commit comments