UITextfield class to float the Placeholder and customize the placeholder while editing.
- Add Floating effect In UITextfield Placeholder.
- Change the Placeholder Text Color.
- Change the Placeholder Text Color when UITextfield begins editing.
- Add bottom line in .
- Change the bottom line color.
- Change the bottom line color when UITextfield begins editing.
- The best is yet to come.
CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. which automates and simplifies the process of using 3rd-party libraries in your projects. See the Get Started section for more details. You can install it with the following command:
$ sudo gem install cocoapods
To integrate ACFloatingTextfield into your Xcode project using CocoaPods, simply add the following line to your Podfile:
pod “ACFloatingTextfield-Objc” , :git => 'https://github.com/ErAbhishekChandani/ACFloatingTextfield.git'
If you are using
Swift, be sure to adduse_frameworks!in yourPodfileand set your target to iOS 8+:
platform :ios, '8.0'
use_frameworks!
pod “ACFloatingTextfield-Swift” , :git => 'https://github.com/ErAbhishekChandani/ACFloatingTextfield.git'
Then, run the following command from Terminal:
$ pod install
You should open the {Project}.xcworkspace instead of the {Project}.xcodeproj after you installed anything from CocoaPods.
$ open *.xcworkspace
Manual Installation
Download the Sample and drag & drop the ACFloatingTextField.h and ACFloatingTextField.m in your project.
Releasing Swift Version of ACFloating TextField.
1) Add Textfield From Storyboard in View Controller and Set the class to ACFloatingTextField or create the textfield programmatically.
2) Set the Delegate.
3) Set Placeholder Text By Following Method.
[(ACFloatingTextField *)textField setTextFieldPlaceholderText:@"Username"];
OR
acFloatingTextField.placeholder = @"";
4)Implement the UITextfield Delegate method.
-(BOOL)textFieldShouldReturn:(UITextField *)textField {
[textField resignFirstResponder];
return YES;
}
##Customization
1) Change the color of Bottom Line.
_textField.lineColor = [UIColor blueColor];
2) Change the selected State color for Bottom Line.
_textField.selectedLineColor = [UIColor orangeColor];
3) Change the Placeholder Color.
_textField.placeHolderTextColor = [UIColor redColor];
4) Change the Selected Placeholder Color.
_textField.selectedPlaceHolderTextColor = [UIColor greenColor];
5) Change lineColor, selectedLineColor , placeHolderColor & selectedPlaceHolderColor From Storyboard in Swift version.
- If you found a bug, open an issue.
- If you have a feature request, open an issue.
- If you want to contribute,please submit a pull request.
ACFloatingTextField is released under the MIT license. See LICENSE for details.