1

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

Afnan Humdan
  • 195
  • 3
  • 12
  • thank you. the installation instructions are a joke lol – Ben Akin Nov 05 '17 at 02:18
  • this is a MUCH better explanation https://stackoverflow.com/questions/29078125/what-is-the-procedure-for-installing-an-external-framework-or-library-for-swift – Ben Akin Nov 05 '17 at 02:22

2 Answers2

7

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.

Seng Wee
  • 534
  • 9
  • 20
4

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.

ridvankucuk
  • 2,407
  • 1
  • 23
  • 41