Popularity
2.5
Stable
Activity
0.0
Stable
101
3
14

Programming language: Swift
License: MIT License
Tags: UI     TextField & TextView    
Latest version: v1.1.0

RSFloatInputView alternatives and similar libraries

Based on the "TextField & TextView" category.
Alternatively, view RSFloatInputView alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of RSFloatInputView or a related project?

Add another 'TextField & TextView' Library

README

RSFloatInputView

Version License Platform

Features

  • Smooth animation using CoreText
  • Support optional left icon
  • Support optional seperator
  • Configurable padding, size, fonts and colors
  • Ready for multi styles
  • Ready for string localization
  • Configurable in interface builder

Demo

Yotube Video Demo

Customization

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    RSFloatInputView.stringTransformer = {
      orginal in
      // Transform the place holder string configured in XIB with your own way.
      // e.g return NSLocalizedString(orginal, comment: orginal)
      return orginal.replacingOccurrences(of: "TXT_", with: "")
    }
    RSFloatInputView.instanceTransformer = {
      instance in
      // Support multi-styles in one place using the tag
      if instance.tag == 0 {
        instance.floatPlaceHolderColor = UIColor.brown
        instance.textColor = UIColor.darkText
        instance.tintColor = UIColor.brown
      }
      if instance.tag == 1 {
        instance.floatPlaceHolderColor = UIColor.blue
        instance.textColor = UIColor.darkText
        instance.tintColor = UIColor.blue
      }
    }
    return true
  }

Requirements

  • iOS 8.0
  • Swift 4.1

Installation

RSFloatInputView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "RSFloatInputView"

Author

Roy Ng, [email protected] @ Redso, https://www.redso.com.hk/

Linkedin: https://www.linkedin.com/in/roy-ng-19427735/

License

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


*Note that all licence references and agreements mentioned in the RSFloatInputView README section above are relevant to that project's source code only.