TextFieldEffects alternatives and similar libraries
Based on the "UI" category.
Alternatively, view TextFieldEffects alternatives based on common mentions on social networks and blogs.
-
Charts
Beautiful charts for iOS/tvOS/OSX! The Apple side of the crossplatform MPAndroidChart. -
Animated Tab Bar
RAMAnimatedTabBarController is a Swift module for adding animation to tabbar items. -
LTMorphingLabel
Graceful morphing effects for UILabel written in Swift. -
NVActivityIndicatorView
Collection of nice loading animations. -
Material
Express your creativity with Material, an animation and graphics framework for Google's Material Design and Apple's Flat UI in Swift. -
JTAppleCalendar
The final Apple calendar you will ever try. Built for iOS in Swift. -
FSPagerView
FSPagerView is an elegant Screen Slide Library. It is extremely helpful for making Banner View、Product Show、Welcome/Guide Pages、Screen/ViewController Sliders. -
SwiftMessages
A very flexible message bar for iOS written in Swift. -
AMScrollingNavbar
Scrollable UINavigationBar that follows the scrolling of a UIScrollView. -
SwipeCellKit
Swipeable UITableViewCell based on the stock Mail.app. -
Material Components for iOS
Modular and customizable Material Design UI components for iOS -
PermissionScope
A Periscope-inspired way to ask for iOS permissions. -
Scrollable-GraphView
An adaptive scrollable graph view for iOS to visualise simple discrete datasets. Written in Swift. Originally written for a small personal project. -
Macaw
Powerful and easy-to-use vector graphics Swift library with SVG support. -
SideMenu
Simple side menu control for iOS in Swift inspired by Facebook. Right and Left sides. No coding required. -
Alerts Pickers
Advanced usage of UIAlertController with TextField, DatePicker, PickerView, TableView and CollectionView. -
ImagePicker
A nicely designed and super easy to use ImagePicker. -
NotificationBanner
The easiest way to display highly customizable in app notification banners in iOS. -
SPPermission
Simple request permission with native UI and interactive animation. -
BulletinBoard
Generates and manages contextual cards displayed at the bottom of the screen. -
ESTabBarController
A highly customizable TabBarController component, which is inherited from UITabBarController. -
Instructions
Create walkthroughs and guided tours (coach marks) in a simple way, with Swift. -
PopupDialog
A simple, customizable popup dialog. Replaces UIAlertController alert style. -
SlideMenuControllerSwift
iOS Slide Menu View based on Google+, iQON, Feedly, Ameba iOS app. -
TLYShyNavBar
Unlike all those arrogant UINavigationBar, this one is shy and humble! Easily create auto-scrolling navigation bars! -
ActiveLabel
UILabel drop-in replacement supporting Hashtags (#), Mentions (@) and URLs (http://). -
Persei
Animated top menu for UITableView / UICollectionView / UIScrollView written in Swift. -
DGElasticPullToRefresh
Elastic pull to refresh. -
BouncyLayout
Is a collection view layout that makes your cells bounce. -
DOFavoriteButton
Cute Animated Button written in Swift. -
StarWars.iOS
Transition animation to crumble view-controller into tiny pieces. -
PaperOnboarding
PaperOnboarding is a material design UI slider. -
KMNavigationBarTransition
A drop-in universal library helps you to manage the navigation bar styles and makes transition animations smooth between different navigation bar styles while pushing or popping a view controller for all orientations. And you don't need to write any line of code for it, it all happens automatically. -
RazzleDazzle
A simple keyframe-based animation framework for iOS, written in Swift. Perfect for scrolling app intros. -
XLActionController
Fully customizable and extensible action sheet controller written in Swift 2. -
CircleMenu
CircleMenu is a simple, elegant UI menu with a circular layout and material design animations. -
PagingMenuController
Paging view controller with customizable menu in Swift.
Scout APM - Leading-edge performance monitoring starting at $39/month
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of TextFieldEffects or a related project?
README
TextFieldEffects 
I fell in love with the text inputs effects in this article. As an exercise I decided to recreate as many of them as I can using Swift (some of them have a personal touch).
Currently it features the following effects from the article:
- [x] Kaede
- [x] Hoshi
- [x] Jiro
- [x] Isao
- [x] Minoru
- [x] Yoko
- [x] Madoka
- [x] Akira
- [x] Yoshiko
How they look
Kaede
Hoshi
Jiro
Isao
Minoru
Yoko
Madoka
Akira
Yoshiko
Installation
- Looking for Swift 2.3 support? Check out the 1.2.0 tag.
- Looking for Swift 2.1 support? Check out the 1.1.1 tag.
- Looking for Swift 1.2 support? Check out the
swift-1.2
branch.
Manual
The easiest way to install this framework is to drag and drop the TextFieldEffects/TextFieldEffects
folder into your project. This also prevents the frameworks
problem in iOS where the IBInspectable and IBDesignable are stripped out.
CocoaPods
Add the following to your Podfile:
use_frameworks!
pod 'TextFieldEffects'
Carthage
Add the following to your Cartfile:
github 'raulriera/TextFieldEffects'
How to use them
Every effect is properly documented in the source code, this is the best way to both understand and see what they do. There is also an example project included with all the effects and their settings.
Interface Builder
The library is a simple drop-in, as soon as you set your subclass to one of the effects and your module to TextFieldEffects
you will be able to see all the IBDesignable settings in the storyboard.
Code
If you like to get your hands dirty, you can use them just like you would normally use any UITextField
let textField = KaedeTextField(frame: textFieldFrame)
textField.placeholderColor = .darkGrayColor()
textField.foregroundColor = .lightGrayColor()
view.addSubView(textField)
Is that simple.
Created by
Raul Riera, @raulriera