Swift 表单开发包 SwiftForms
- 授权协议: BSD
- 开发语言: Swift
- 操作系统: iOS
- 软件首页: https://github.com/ortuman/SwiftForms
- 软件文档: https://github.com/ortuman/SwiftForms
软件介绍
SwiftForms 是一个强大且灵活的 Swift 开发库,可轻松通过几行代码创建复杂表单,同时可方便的定制单元格显示样式。
示例代码:
// 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
Learning Vue.js 2
Olga Filipova / Packt Publishing / 2017-1-5 / USD 41.99
About This Book Learn how to propagate DOM changes across the website without writing extensive jQuery callbacks code.Learn how to achieve reactivity and easily compose views with Vue.js and unders......一起来看看 《Learning Vue.js 2》 这本书的介绍吧!
