我想在我的XCode 6 + Swift项目中包含一些第三方代码(特别是https://github.com/ortuman/SwiftForms)。我该怎么做?
答案 0 :(得分:0)
只需将源.swift文件添加到项目中,(拖放到 Xcode - you can see the file tree here左侧的文件树中。)
您需要的文件是here.
正如github页面所述: Cocoapods目前不支持Swift项目。在支持可用之前您应该克隆存储库并将源文件夹拖到项目中以使用SwiftForms 。
在Xcode项目中获得源.swift文件presenet之后,您可以按照文档中的描述创建表单:
“使用SwiftForms创建表单非常简单。您只需要从FormViewController派生控制器并定义FormDescriptor实例及其部分和行。以下是如何创建一个简单表单的示例输入电子邮件和用户密码。“
// Create form instace
let form = FormDescriptor()
form.title = "Example form"
// Define first section
let section1 = FormSectionDescriptor()
var row: FormRowDescriptor! = FormRowDescriptor(tag: "name", rowType: .Email, title: "Email")
section1.addRow(row)
row = FormRowDescriptor(tag: "pass", rowType: .Password, title: "Password")
section1.addRow(row)
// Define second section
let section2 = FormSectionDescriptor()
row = FormRowDescriptor(tag: "button", rowType: .Button, title: "Submit")
section2.addRow(row)
form.sections = [section1, section2]
self.form = form
答案 1 :(得分:0)
非常简单:
已经完成了