I've been trying to change the value of an XLForm row programatically after I load some data from an API call. The form is on screen so needs to be reloaded as its visible.
I've tried setting a new options object. Forcing a call to say that the values have changes. Reloading the table view and nothing is working. I've also tried to change the value like this.
[(XLFormRowDescriptor *)self.formRows[@"year"] setValue:self.trade.year];
Can someone please let me know how to change one?