Swiftpack.co - luximetr/AnyFormatKit as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by luximetr.
luximetr/AnyFormatKit 2.5.2
Simple text formatting in Swift
⭐️ 425
🕓 2 years ago
iOS
.package(url: "https://github.com/luximetr/AnyFormatKit.git", from: "2.5.2")

AnyFormatKit: Simple text formatting in Swift

CI Status Pod Version License Platform SwiftPM compatible Swift

Text formatting framework written on Swift 5.0.

Features

Features
:performing_arts: Convert string into formatted string and vice versa
:bicyclist: Formatting text during typing
:hash: Set format using '#' characters like '### ##-###'
:stuck_out_tongue: Supporting emojis
:heavy_dollar_sign: Formatting money amount
:parking: Formatting with placeholders
:seedling: UITextField and UITextView support

Example

To run the example project, clone the repo and run pod install from the Example directory first.

Demo

Phone number example

Currency example

Card number example

Placeholder number number example

Requirements

  • iOS 8.0+
  • Swift 4.0+
  • Xcode 9.0+

SwiftUI

AnyFormatKit has SwiftUI version, that exists as separate framework AnyFormatKitSwiftUI

Migration Guides

Installation

CocoaPods

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

pod 'AnyFormatKit', '~> 2.5.2'

Then, run the following command:

$ pod install

Swift Package Manager

AnyFormatKit is available with Swift Package Manager. Once you have your Swift package set up, than simply add AnyFormatKit to the dependencies value of your Package.swift

dependencies: [
    .package(url: "https://github.com/luximetr/AnyFormatKit.git", .upToNextMajor(from: "2.5.2"))
]

Usage

Import

import AnyFormatKit

Formatting with TextFormatter

let phoneFormatter = DefaultTextInputFormatter(textPattern: "### (###) ###-##-##")
let phoneInputController = TextFieldInputController()

textField.delegate = phoneInputController
phoneInputController.formatter = phoneFormatter

Get only your input

phoneNumberFormatter.unformat("+51 (013) 442-55-11") // +51013442551 

In case you want to use textField.delegate by yourself

let phoneFormatter = DefaultTextInputFormatter(textPattern: "### (###) ###-##-##")

// inside of UITextFieldDelegate shouldChangeTextIn method
let result = formatter.formatInput(currentText: textField.text ?? "", range: range, replacementString: string)
textField.text = result.formattedText
textField.setCursorLocation(result.caretBeginOffset)

You can find example of setCursorLocation here

Formatter kinds

Author

luximetr, [email protected]

Say thank you

License

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

GitHub

link
Stars: 425
Last commit: 2 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

Crash fix
2 years ago

Fixed crash while using DefaultTextInputFormatter after entering patternSymbol (“#” by default).

Solves: https://github.com/luximetr/AnyFormatKit/issues/39

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics