Updated for Xcode 14.0 beta 1
New in iOS 15
By default, TextField
and SecureField
show a simple “Return” button on the keyboard, but the submitLabel()
modifier let us choose from a range of alternatives.
For example, if you wanted to show the localized form of “Join” for the button, you would use this:
struct ContentView: View {
@State private var username = ""
var body: some View {
TextField("Username", text: $username)
.submitLabel(.join)
}
}
Download this as an Xcode project
There are lots of different button options you choose from by passing different values to submitLabel()
:
continue
done
go
join
next
return
route
search
send
All those work equally well with TextField
, SecureField
, and TextView
.
SAVE 50% To celebrate WWDC22, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.