我正在尝试集成一个框架/库,用于在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
答案 0 :(得分:4)
我刚刚创建了一个示例应用来了解您的问题。
请仔细按照以下步骤操作。
Step.1 使用 SwiftForms Lib
更新了我的 Podfile在Podfile的父文件夹中平台:ios,'8.0'
use_frameworks!
pod'SwiftForms'
Step.2 打开终端并运行命令
pod install
Step.3 打开 project_name.xcworkspace 文件以打开包含pod的项目
Step.4 转到项目设置 - > 构建阶段 - >添加 SwiftForms.framework
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子项目中帮助我修复了上述错误。