Code Monkey home page Code Monkey logo

doubleinputformatter's Introduction

DoubleInputFormatter

This is a simple UITextFieldDelegate that allows easy formatting of localized currency or numerical inputs to string, whilst making it easy to still access the underlying value in the form of a Double.

Input demonstration gif

How to use

To get started it's super simple.

  1. Create an instance of the DoubleInputFormatterTextDelegate passing in your UITextField.
/// UITextField as required by component
lazy var bodyTextField: UITextField = {
    ...
}()

/// The formatter for our `UITextField`
lazy var textFieldFormatter: DoubleInputFormatterTextDelegate = {
    
    let textFieldFormatter = DoubleInputFormatterTextDelegate(
        field: bodyTextField
    )
    
    return textFieldFormatter
}()
  1. Listen for changes to the underlying value
textFieldFormatter.valueForInput = { value in
    print("\(value)")
}

Customisation

Formatter

You can provide your own NumberFormatter and override the default currency one to have fine grained control over what's displayed.

Placeholder

A placeholder is only set when the UITextField's textAlignment property is set to .right. When set to .left the cursor sits in an odd location. Open to feedback on alternative approaches.

Demo App

Pleas reference the demo app that shows how to use this simple class in your own projects.

Test

Test's have been added to cover a myriad of use cases. Delegate and Target/Action pattern are not tested, but the internal logic of the transformation is.

doubleinputformatter's People

Watchers

Codie Westphall avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.