I just created an example application to understand your problem.
Just follow these steps.
Step .1 Updated my Subfile with SwiftForms Lib
platform: ios, '8.0'
use_frameworks!
pod 'SwiftForms'
Step 2. Open the terminal in the parent folder of the submap and execute the command
pod install
Step 3. open the project_name.xcworkspace file to open the project using modules
Step 4. Go to project settings → Build phases → Add SwiftForms.framework

Step 5. Now go to Viewcontroller.swift and import
import UIKit import SwiftForms class ViewController: FormViewController { override func viewDidLoad() { super.viewDidLoad()
It works like a charm !! let me know if you find any problems in this.
source share