Merge pull request #3 from TouchInstinct/bugfix/dateFormatter
dateformatter fixed
This commit is contained in:
commit
8278bf17e3
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'UIAnimatedTextField'
|
||||
s.version = '0.1.7'
|
||||
s.version = '0.1.8'
|
||||
s.summary = 'UITextField with animated placeholder'
|
||||
s.description = <<-DESC
|
||||
This custom control can be used as a replacement for UITextField. It comes with 5 different text types: simple, password, url, tappable, date.
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ public class UIAnimatedTextField: UIView {
|
|||
struct Constants {
|
||||
static let done = "Done"
|
||||
static let space = " "
|
||||
static let defaultDateFormat = "dd/MM/YYYY"
|
||||
static let defaultDateFormat = "dd/MM/yyyy"
|
||||
}
|
||||
|
||||
// MARK: - Delegate
|
||||
|
|
|
|||
Loading…
Reference in New Issue