- May 27, 2025
- Mins Read
UITextField character counter with lovable UX đ. No math skills required đ.
UITextField
.@IBInspectable
.TextFieldCounter Version | 1.1.0 | 1.0.4 |
---|---|---|
iOS Version | 10.0+ | 8.0+ |
Xcode Version | 11.2 | 8 |
You can use CocoaPods to install TextFieldCounter
 by adding it to your Podfile
:
platform :ios, ‘10.0’
use_frameworks!
pod ‘TextFieldCounter’
To get the full benefits import TextFieldCounter
 wherever you import UIKit
import UIKit
import TextFieldCounter
TextFieldCounter.swift
 in your project.
import TextFieldCounter
let frame = CGRect(x: 20, y: 80, width: 320, height: 30)
let textField = TextFieldCounter(frame: frame, limit: 20, animate: true, ascending: true, counterColor: .black, limitColor: .red)
view.addSubview(textField)
Set counterDelegate
 and enjoy it đ:
override func viewDidLoad() {
super.viewDidLoad()
textField.counterDelegate = self
}
func didReachMaxLength(textField: TextFieldCounter) {
print(“didReachMaxLength”)
}
UIAppearance
 supportLight and scrollable view controller for tvOS to present blocks of text Description TvOSTextViewer is a view controller to present ...
TvOSSlider is an implementation of UISlider for tvOS. Description and usage TvOSSlider palliates missing an implementation of UISlider for tvOS as part ...
TvOSScribble, based on CoreML, mitigates the lack of a physical numpad area in Siri Remote implementing a handwriting gesture recognizer. ...
PIN keyboard for tvOS Description TvOSPinKeyboard is a view controller that allows easily asking for PIN codes in tvOs Requirements ...
đș A tvOS button which truncates long text with '... More'. The TvOSMoreButton is a simple view which aims to ...