I'm trying to install Swifter framework to Xcode that provided by github here:
https://github.com/mattdonnelly/Swifter
but the installation is not clear enough, there is no folder had the extenssion .framework with header folder inside it
can someone please help me how to get this framework to my project
thank you
First of all you should clone the repo. After that drag and drop Swifter.xcodeproj
to your project. Lastly add SwifteriOS.framework
to linked frameworks and libraries of your project.
IF you are using Cocoapods, add the following line to your Podfile.
pod 'Swifter', :git => 'https://github.com/mattdonnelly/Swifter.git'
Run pod install
then you should be set.