I\'m building a form with the Eureka form builder but don\'t understand how I can get the values inside the form. They provide instructions in the docs here.
The for
I figured it out myself. It wasn't immediately clear to me that you need to set tags on the rows you want to retrieve the value from:
<<< NameRow() {
$0.tag = "NameRow"
$0.title = "Name:"
$0.value = "My name"
}
let dict = form.values(includeHidden: true)
print(dict["NameRow"]) // Prints my name