No Such Module even after installing the framework via cocoa pods

Viewed 5680

I am trying to integrate a framework/library for creating appealing forms in iOS, using this one: https://github.com/ortuman/SwiftForms

I was able to install Cocoapods. I also added the following in my Podfile (in my project's directory):

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

pod 'SwiftForms'

And run the command: $ pod install

But in my class, I still get 'No such module 'SwiftForms'. enter image description here

And what does the color red indicates here: enter image description here

When I open the xworkspace, I get these errors: enter image description here

2 Answers
Related