Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
joegesualdo committed Mar 19, 2017
1 parent 4bc2425 commit 5788245
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 27 deletions.
2 changes: 1 addition & 1 deletion FloatLabelTextField.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FloatLabelTextField'
s.version = '1.0.2'
s.version = '1.0.3'
s.summary = 'Fancy TextFields with floating labels and error messages'

s.description = <<-DESC
Expand Down
12 changes: 0 additions & 12 deletions FloatLabelTextField.xcodeproj/project.pbxproj
Expand Up @@ -12,7 +12,6 @@
453616C11E722C5300D38025 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 453616C01E722C5300D38025 /* Assets.xcassets */; };
453616C41E722C5300D38025 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 453616C21E722C5300D38025 /* LaunchScreen.storyboard */; };
453616CD1E7252FE00D38025 /* FloatLabelTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 453616CC1E7252FE00D38025 /* FloatLabelTextField.swift */; };
454EE7181E7D84F80029B344 /* FloatLabelTextFieldDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 454EE7171E7D84F80029B344 /* FloatLabelTextFieldDelegate.swift */; };
4550AD581E7790EA009A67EF /* Roboto-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4550AD4C1E7790EA009A67EF /* Roboto-Black.ttf */; };
4550AD591E7790EA009A67EF /* Roboto-BlackItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4550AD4D1E7790EA009A67EF /* Roboto-BlackItalic.ttf */; };
4550AD5A1E7790EA009A67EF /* Roboto-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4550AD4E1E7790EA009A67EF /* Roboto-Bold.ttf */; };
Expand All @@ -35,7 +34,6 @@
453616C31E722C5300D38025 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
453616C51E722C5300D38025 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
453616CC1E7252FE00D38025 /* FloatLabelTextField.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FloatLabelTextField.swift; sourceTree = "<group>"; };
454EE7171E7D84F80029B344 /* FloatLabelTextFieldDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FloatLabelTextFieldDelegate.swift; sourceTree = "<group>"; };
4550AD4C1E7790EA009A67EF /* Roboto-Black.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Black.ttf"; sourceTree = "<group>"; };
4550AD4D1E7790EA009A67EF /* Roboto-BlackItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-BlackItalic.ttf"; sourceTree = "<group>"; };
4550AD4E1E7790EA009A67EF /* Roboto-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Bold.ttf"; sourceTree = "<group>"; };
Expand Down Expand Up @@ -80,7 +78,6 @@
453616B81E722C5300D38025 /* FloatLabelTextField */ = {
isa = PBXGroup;
children = (
454EE7161E7D84DB0029B344 /* Delegates */,
4550AD4B1E7790C9009A67EF /* Fonts */,
453616CE1E7254BF00D38025 /* Models */,
453616CB1E7252DC00D38025 /* Views */,
Expand Down Expand Up @@ -108,14 +105,6 @@
name = Models;
sourceTree = "<group>";
};
454EE7161E7D84DB0029B344 /* Delegates */ = {
isa = PBXGroup;
children = (
454EE7171E7D84F80029B344 /* FloatLabelTextFieldDelegate.swift */,
);
name = Delegates;
sourceTree = "<group>";
};
4550AD4B1E7790C9009A67EF /* Fonts */ = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -219,7 +208,6 @@
buildActionMask = 2147483647;
files = (
453616BC1E722C5300D38025 /* ViewController.swift in Sources */,
454EE7181E7D84F80029B344 /* FloatLabelTextFieldDelegate.swift in Sources */,
453616BA1E722C5300D38025 /* AppDelegate.swift in Sources */,
453616CD1E7252FE00D38025 /* FloatLabelTextField.swift in Sources */,
);
Expand Down
Binary file not shown.
3 changes: 3 additions & 0 deletions FloatLabelTextField/FloatLabelTextField.swift
Expand Up @@ -8,6 +8,9 @@

import UIKit

protocol FloatLabelTextFieldDelegate: UITextFieldDelegate {
}

public class FloatLabelTextField: UIView , UITextFieldDelegate {
var delegate: FloatLabelTextFieldDelegate?
private var customInputContainer: UIView
Expand Down
13 changes: 0 additions & 13 deletions FloatLabelTextField/FloatLabelTextFieldDelegate.swift

This file was deleted.

2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -4,7 +4,7 @@
## Install
```ruby
# Podfile
pod 'FloatLabelTextField', '~> 1.0.2'
pod 'FloatLabelTextField', '~> 1.0.3'
```

## Example
Expand Down

0 comments on commit 5788245

Please sign in to comment.