I am trying to add Swifter to my Xcode Swift project, but I keep getting the No such Module
error. I followed these instructions to download them using pods. But now I keep getting the error when I try to import SwifteriOS
. I have also tried manually adding the framework to both the Embedded Binaries
and Linked Frameworks and Libraries
found on the Target
-> General
Page.
Asked
Active
Viewed 324 times
0

Matt Bart
- 809
- 1
- 7
- 26
-
Any help would be greatly appreciated! – Matt Bart Jul 02 '18 at 00:22
2 Answers
1
There are TWO Swifter pods!!! its important to add this extra piece to your podfile:
pod 'Swifter' , :git => 'https://github.com/mattdonnelly/Swifter.git'
to see how to set up the rest i have answered the question with an update (for 2021) here

Michael Montalbano
- 451
- 5
- 10
0
After some more playing around with it, it seems like import SwifteriOS
has been renamed to just import Swifter
. This got rid of any compile errors that I had. I also ended up deleting the Swifter.framework
from all three spots in the photo above with no issues.
I think the docs may be a little bit outdated as well as the example project! Hope this helped someone else!

Matt Bart
- 809
- 1
- 7
- 26
-
how are you able to do authentication properly, I am having problems. Please see https://stackoverflow.com/questions/51413915/new-twitter-update-authentication thanks – Ben Akin Jul 19 '18 at 04:00