Skip to content
This repository has been archived by the owner on Apr 19, 2021. It is now read-only.

Commit

Permalink
Updated Pods.
Browse files Browse the repository at this point in the history
  • Loading branch information
ortuman committed Oct 5, 2018
1 parent 2c31ee2 commit 13d6046
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions SwiftForms.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "SwiftForms"
s.version = "1.8.2"
s.version = "1.8.3"
s.summary = "A small and lightweight library written in Swift that allows you to easily create forms"
s.homepage = "https://github.com/ortuman/SwiftForms"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = "Miguel Ángel Ortuño"
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/ortuman/SwiftForms.git", :tag => '1.8.2' }
s.source = { :git => "https://github.com/ortuman/SwiftForms.git", :tag => '1.8.3' }
s.source_files = 'SwiftForms/*.swift','SwiftForms/descriptors/*.swift', 'SwiftForms/cells/base/*.swift', 'SwiftForms/cells/*.swift', 'SwiftForms/controllers/*.swift'
end
2 changes: 1 addition & 1 deletion SwiftFormsApplication/ExampleFormViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class ExampleFormViewController: FormViewController {
let section1 = FormSectionDescriptor(headerTitle: nil, footerTitle: nil)

var row = FormRowDescriptor(tag: Static.emailTag, type: .email, title: "Email")
row.configuration.cell.appearance = ["textField.placeholder" : "[email protected]" as AnyObject, "textField.textAlignment" : NSTextAlignment.right.rawValue as AnyObject]
row.configuration.cell.appearance = ["textField.placeholder" : "[email protected]" as AnyObject, "textField.textAlignment" : NSTextAlignment.right.rawValue as AnyObject ]
section1.rows.append(row)

row = FormRowDescriptor(tag: Static.passwordTag, type: .password, title: "Password")
Expand Down

0 comments on commit 13d6046

Please sign in to comment.