Skip to content

Latest commit

 

History

History
124 lines (84 loc) · 2.49 KB

README.md

File metadata and controls

124 lines (84 loc) · 2.49 KB

FRTextFieldAnimation

Swift Version CocoaPods version License

This library shows text fields with beautiful placeholder animation when are selected

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

  • Swift 4.0 or higher
  • iOS 8.0
  • XCode 9.0

Installation

Cocoapods

Install Cocoapods if need be.

$ gem install cocoapods

Add FRTextFieldAnimation in your Podfile.

use_frameworks!

pod 'FRTextFieldAnimation'

Then, run the following command.

$ pod install

Usage

Find a sample code for iOS here.

Initialization

import FRTextFieldAnimation
@IBOutlet weak var textView: FRTextFieldAnimation!
textView.placeHolderFont = UIFont.boldSystemFont(ofSize: 20)
textView.textFieldFont = UIFont.boldSystemFont(ofSize: 15)
textView.placeHolderTitle = "Phone number"
textView.placeHolderColor = UIColor.red
textView.lineColor = UIColor.purple
textView.textColor = UIColor.darkGray
textView.textLimit = 11
textView.keyboardType = .numberPad

if you want to use textfield delegates methods

textView.delegate = self
extension ViewController: AnimatedTextInputDelegate {
func animatedTextInputDidEndEditing(animatedTextInput: FRTextFieldInput) {
//code
}

func animatedTextInputDidBeginEditing(animatedTextInput: FRTextFieldInput) {
//code
}

func animatedTextInputDidChange(animatedTextInput: FRTextFieldInput) {
//code
}

func animatedTextInputShouldReturn(animatedTextInput: FRTextFieldInput) -> Bool {
animatedTextInput.resignFirstResponder()
return true
}

func animatedTextInputShouldBeginEditing(animatedTextInput: FRTextFieldInput) -> Bool {
return true
}

func animatedTextInputShouldEndEditing(animatedTextInput: FRTextFieldInput) -> Bool {
return true
}
}

Author

Farshad Ghafari, [email protected]

License

FRTextFieldAnimation is available under the MIT license. See the LICENSE file for more info.