So I was working on a personal project and wanted to use SwipeMenuViewController and installed it but when I try to run my project on Xcode it gives me an error and says [No such module 'SwipeMenuViewController']
I do not know why it is saying that since I was able to install SwipeMenuViewController.
My podfile:
platform :ios, '9.0'
use_frameworks!
def shared_pods
pod 'SwiftChart'
pod 'Charts'
pod 'SwipeMenuViewController'
end
target 'StocksSim' do
shared_pods
end