UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

BetterRest ternary expression question...

Forums > 100 Days of SwiftUI

If I wanted to set the stepper to display in red if coffee is 2 or more, can I add that to this line or does it have to be separate? I'm struggling.

I tried adding it to this below, but I can't get it to work!

Stepper(coffeeAmount == 1 ? "1 cup" : "(coffeeAmount) cups", value: $coffeeAmount, in: 1...20)

2      

No, you can't do it directly on that line. You do it on a modiifier method for Stepper, using .foregroundColor

 .foregroundColor(coffeeAmount > 1 ? .red : .primary )

You would have also discovered that the Stepper was not displaying the correct amount of coffe cups.

Stepper(coffeeAmount == 1 ? "1 cup" : "(coffeeAmount) cups", value: $coffeeAmount, in: 1...20)

would display (coffeeAmount) cups when the number of coffee cups was 2 or more. Instead you need to use string interpolation.

Stepper(coffeeAmount == 1 ? "1 cup" : "\(coffeeAmount) cups", value: $coffeeAmount, in: 1...20)

So the code would be

Stepper(coffeeAmount == 1 ? "1 cup" : "\(coffeeAmount) cups", value: $coffeeAmount, in: 1...20)
    .foregroundColor(coffeeAmount > 1 ? .red : .primary )

2      

Hacking with Swift is sponsored by Essential Developer

SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until April 28th.

Click to save your free spot now

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

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.