即使在通过可可豆荚安装框架后也没有这样的模块

时间:2016-03-18 07:48:11

标签: ios swift swift2 cocoapods

我正在尝试集成一个框架/库,用于在iOS中创建吸引人的表单,使用这个:https://github.com/ortuman/SwiftForms

我能够安装Cocoapods。我还在我的Podfile中添加了以下内容(在我的项目目录中):

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

pod 'SwiftForms'

运行命令:$ pod install

但是在我的课堂上,我仍然没有这样的模块和SwiftForms'。 enter image description here

红色在这里表示的是什么: enter image description here

当我打开xworkspace时,我收到以下错误: enter image description here

2 个答案:

答案 0 :(得分:4)

我刚刚创建了一个示例应用来了解您的问题。

请仔细按照以下步骤操作。

Step.1 使用 SwiftForms Lib

更新了我的 Podfile
  

平台:ios,'8.0'

     

use_frameworks!

     

pod'SwiftForms'

在Podfile的父文件夹中

Step.2 打开终端并运行命令

  

pod install

Step.3 打开 project_name.xcworkspace 文件以打开包含pod的项目

Step.4 转到项目设置 - > 构建阶段 - >添加 SwiftForms.framework

enter image description here

Step.5 现在转到Viewcontroller.swift并导入

import UIKit
import SwiftForms


class ViewController: FormViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
}

它就像魅力一样!如果您在此发现任何问题,请告诉我。

答案 1 :(得分:1)

通过设置"仅构建活动架构"为否,在主项目和Pods子项目中帮助我修复了上述错误。

https://stackoverflow.com/a/43557775/5177699