- July 26, 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
 supportNavigationKit is a lightweight library which makes SwiftUI navigation super easy to use. đ» Installation đŠ Swift Package Manager Using Swift Package Manager, add ...
An alternative SwiftUI NavigationView implementing classic stack-based navigation giving also some more control on animations and programmatic navigation. NavigationStack Installation ...
With SwiftUI Router you can power your SwiftUI app with path-based routing. By utilizing a path-based system, navigation in your app becomes ...
This package takes SwiftUI's familiar and powerful NavigationStack API and gives it superpowers, allowing you to use the same API not just ...