NEW: My new book Pro SwiftUI is out now – level up your SwiftUI skills today! >>

How to format a TextField for numbers

Paul Hudson    @twostraws   

Updated for Xcode 14.2

You can attach a formatter to SwiftUI’s TextField in order to restrict what kind of data it can contain, but honestly it’s a bit limited in what it can do.

To demonstrate the functionality – and also its limitations – we could write some code to let the user enter a score in a game, and show what they entered. Here’s the code:

struct ContentView: View {
    @State private var score = 0

    var body: some View {
        VStack {
            TextField("Enter your score", value: $score, format: .number)
                .textFieldStyle(.roundedBorder)
                .padding()

            Text("Your score was \(score).")
        }
    }
}

Download this as an Xcode project

A text field showing 123, with a label below saying “Your score was 123.”

Important: If you’re using Xcode 12 you need to use RoundedBorderTextFieldStyle() rather than .roundedBorder, and also create a custom number formatter, like this:

struct ContentView: View {
    @State private var score = 0

    let formatter: NumberFormatter = {
        let formatter = NumberFormatter()
        formatter.numberStyle = .decimal
        return formatter
    }()

    var body: some View {
        VStack {
            TextField("Enter your score", value: $score, formatter: formatter)
                .textFieldStyle(RoundedBorderTextFieldStyle())
                .padding()

            Text("Your score was \(score).")
        }
    }
}

Download this as an Xcode project

Regardless of which code option you choose, if you try using it you’ll notice a few things:

  1. The “Your score was” text view updates only when the user presses Return.
  2. The user is free to enter any kind of text that they want, and it only jumps back to being a number when they press Return.
  3. Before validation, they can even enter invalid numbers, such as 12.34.56.

If you’re happy with that – if you’re happy that the text field allows any input, and only validates its numbers and updates its state when the user presses Return – then you’re good to go.

However, if you want to try to fix some those you’ll soon hit more problems. For example, you might try to attach the .keyboardType(.decimalPad) modifier to your text field in order to restrict it to numbers and decimal point only. However, now:

  1. The user can still enter multiple decimal points before validation happens.
  2. By default, the decimal pad keyboard has no Return key to hide the keyboard; you’ll need to add one yourself.

I wish there were a nice workaround for this, but I’m afraid there is not – not without rolling your own wrapper around UITextField, that is. In the meantime, you either accept the shortcomings of the existing functionality, or use an alternative input mechanism such as Stepper.

Hacking with Swift is sponsored by Waldo

SPONSORED Thorough mobile testing hasn’t been efficient testing. With Waldo Sessions, it can be! Test early, test often, test directly in your browser and share the replay with your team.

Try for free today!

Sponsor Hacking with Swift and reach the world's largest Swift community!

Similar solutions…

BUY OUR BOOKS
Buy Pro Swift Buy Pro SwiftUI Buy Swift Design Patterns Buy Testing Swift Buy Hacking with iOS Buy Swift Coding Challenges Buy Swift on Sundays Volume One Buy Server-Side Swift Buy Advanced iOS Volume One Buy Advanced iOS Volume Two Buy Advanced iOS Volume Three Buy Hacking with watchOS Buy Hacking with tvOS Buy Hacking with macOS Buy Dive Into SpriteKit Buy Swift in Sixty Seconds Buy Objective-C for Swift Developers Buy Beyond Code

Was this page useful? Let us know!

Average rating: 4.4/5

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.