I'm working on a money input screen and need to implement a custom init
to set a state variable based on the initialized amount.
I thought this would work, but I'm getting a compiler error of:
Cannot assign value of type 'Binding<Double>' to type 'Double'
struct AmountView : View {
@Binding var amount: Double
@State var includeDecimal = false
init(amount: Binding<Double>) {
self.amount = amount
self.includeDecimal = round(amount)-amount > 0
}
...
}
Argh! You were so close. This is how you do it. You missed a dollar sign (beta 3) or underscore (beta 4), and either self in front of your amount property, or .value after the amount parameter. All these options work:
You'll see that I removed the
@State
in includeDecimal, check the explanation at the end.This is using the property (put self in front of it):
or using .value after (but without self, because you are using the passed parameter, not the struct's property):
This is the same, but we use different names for the parameter (withAmount) and the property (amount), so you clearly see when you are using each.
Note that .value is not necessary with the property, thanks to the property wrapper (@Binding), which creates the accessors that makes the .value unnecessary. However, with the parameter, there is not such thing and you have to do it explicitly. If you would like to learn more about property wrappers, check the WWDC session 415 - Modern Swift API Design and jump to 23:12.
As you discovered, modifying the @State variable from the initilizer will throw the following error: Thread 1: Fatal error: Accessing State outside View.body. To avoid it, you should either remove the @State. Which makes sense because includeDecimal is not a source of truth. Its value is derived from amount. By removing @State, however,
includeDecimal
will not update if amount changes. To achieve that, the best option, is to define your includeDecimal as a computed property, so that its value is derived from the source of truth (amount). This way, whenever the amount changes, your includeDecimal does too. If your view depends on includeDecimal, it should update when it changes:As indicated by rob mayoff, you can also use
$$varName
(beta 3), or_varName
(beta4) to initialise a State variable:You said (in a comment) “I need to be able to change
includeDecimal
”. What does it mean to changeincludeDecimal
? You apparently want to initialize it based on whetheramount
(at initialization time) is an integer. Okay. So what happens ifincludeDecimal
isfalse
and then later you change it totrue
? Are you going to somehow forceamount
to then be non-integer?Anyway, you can't modify
includeDecimal
ininit
. But you can initialize it ininit
, like this:(Note that at some point the
$$includeDecimal
syntax will be changed to_includeDecimal
.)