Description
Lightweight set of text fields with nice animation and functionality. ๐ Inspired by https://uimovement.com/ui/2524/input-field-help/
TweeTextField alternatives and similar libraries
Based on the "TextField & TextView" category.
Alternatively, view TweeTextField alternatives based on common mentions on social networks and blogs.
-
JVFloatLabeledTextField
UITextField subclass with floating labels - inspired by Matt D. Smith's design: http://dribbble.com/shots/1254439--GIF-Mobile-Form-Interaction?list=users -
PYSearch
๐ An elegant search controller which replaces the UISearchController for iOS (iPhone & iPad) . -
SkyFloatingLabelTextField
A beautiful and flexible text field control implementation of "Float Label Pattern". Written in Swift. -
Reel Search
:octocat: ๐ RAMReel is a UI controller that allows you to choose options from a list. Swift UI library made by @Ramotion -
NextGrowingTextView
๐ The next in the generations of 'growing textviews' optimized for iOS 8 and above. -
InputBarAccessoryView
A simple and easily customizable InputAccessoryView for making powerful input bars with autocomplete and attachments -
RPFloatingPlaceholders
UITextField and UITextView subclasses with placeholders that change into floating labels when the fields are populated with text. -
KMPlaceholderTextView
A UITextView subclass that adds support for multiline placeholder written in Swift. -
InstantSearch iOS
โก๏ธ A library of widgets and helpers to build instant-search applications on iOS. -
UITextField-Navigation
๐โโ๏ธ UITextField-Navigation makes it easier to navigate between UITextFields and UITextViews -
PasswordTextField
A custom TextField with a switchable icon which shows or hides the password and enforce good password policies -
CocoaTextField
Apple TextField created according to the Material.IO guidelines of 2019. Featured at Medium. -
ARAutocompleteTextView
ARAutocompleteTextView is a subclass of UITextView that automatically displays text suggestions in real-time. This is perfect for automatically suggesting the domain as a user types an email address, #hashtag or @alexruperez. -
CHIOTPField
CHIOTPField is a set of textfields that can be used for One-time passwords, SMS codes, PIN codes, etc. Mady by @ChiliLabs - https://chililabs.io -
AwesomeTextField
Awesome TextField is a nice and simple libriary for iOS and Mac OSX. It's highly customisable and easy-to-use tool. Works perfectly for any registration or login forms in your app. -
Streamoji
DISCONTINUED. :godmode: Custom emoji rendering library for iOS apps with support for GIF & still images - plug-in extension for UITextView - performance, cache โ - Made with ๐ by @GetStream -
CBPinEntryView
A customisable view for entering arbitrary length pins, codes or passwords in iOS. Supports iOS 12 one time codes. -
MBAutoGrowingTextView
DISCONTINUED. An auto-layout base UITextView subclass which automatically grows with user input and can be constrained by maximal and minimal height -
MVAutocompletePlaceSearchTextField
iOS - Subclass of UITextField to achieve autocompletion for Place Search like Google Places, Uber and Much more apps having maps. -
RSFloatInputView
A Float Input View with smooth animation and supporting icon and seperator written with Swift -
NxEnabled
DISCONTINUED. Library that allows you binding `enabled` property of button with textable elements (TextView, TextField)
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of TweeTextField or a related project?
README
TweeTextField
This is lightweight library that provides different types of Text Fields based on your needs. I was inspired by Jan Henneberg.
Features
- [x] Customizable placeholder
- [x] Customizable label under text field
- [x] Customizable via Attributes Inspector
- [x] Nice animation for placeholder
- [x] Nice animation for bottom line
- [x] No override of UITextField' behaviors
- [x] Clean code with divided functionalities
- [x] Easy to use and extend
- [x] Right-to-Left support
- [x] Complete documentation and support
Requirements
- iOS 10.0+
- Xcode 11.0+
- Swift 5.0+
Installation
CocoaPods
To integrate TweeTextField
into your Xcode project using CocoaPods, specify it in your Podfile
:
pod 'TweeTextField'
Then run pod install
to integrate the library in your project.
Swift Package Manager
Adding TweeTextField to the dependencies value of your Package.swift
file.
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "YOUR_PROJECT_NAME",
dependencies: [
.package(url: "https://github.com/oleghnidets/TweeTextField.git", from: "1.6.1"),
]
)
Or you may use Xcode. File
->Swift Packages
->Add Package Dependency
. Then put link to the repository.
Carthage
To integrate TweeTextField
into your Xcode project using Carthage, specify it in your Cartfile:
github "oleghnidets/TweeTextField"
Run carthage update
to build the framework and drag the built TweeTextField.framework
into your Xcode project. More info you can find on official page.
Manually
- Download the code.
- Drag and drop sources in your project.
- Import the library in code by
import TweeTextField
.
Usage
Check out the documentation for more details.
Select one of the text fields provided based on your requirements. In general, you can use TweeAttributedTextField
. It is a main class with aggregated functionalities of other text fields.
Look at class diagram:
TweePlaceholderTextField
has a customized placeholder label which has animations on the beginning and ending editing.TweeBorderedTextField
shows a bottom line permanently.TweeActiveTextField
shows animated bottom line when a user begins editing.TweeAttributedTextField
shows the custom info label under text field.
You can set up text field based on your preferences via Attributes Inspector. Also the library has some properties accessible for you. Check out sample project for more information.
emailTextField.infoAnimationDuration = 0.7
emailTextField.infoTextColor = .systemRed
emailTextField.infoFontSize = 13
emailTextField.activeLineColor = .systemBlue
emailTextField.activeLineWidth = 1
emailTextField.animationDuration = 0.3
emailTextField.lineColor = .lightGray
emailTextField.lineWidth = 1
emailTextField.minimumPlaceholderFontSize = 10
emailTextField.originalPlaceholderFontSize = 13
emailTextField.placeholderDuration = 0.3
emailTextField.placeholderColor = .systemGray2
emailTextField.tweePlaceholder = "Email address"
emailTextField.placeholderLabel.font = UIFont.preferredFont(forTextStyle: .largeTitle)
Communication
- If you want to contribute, submit a pull request.
- If you found a bug, have suggestions or need help, please, open an issue.
- If you need help, write me [email protected].
License
Distributed under the MIT license. See LICENSE for more information.
*Note that all licence references and agreements mentioned in the TweeTextField README section above
are relevant to that project's source code only.