Sebastian Dwornik

Results 18 comments of Sebastian Dwornik

Are you suggesting then: ``` FORMFields *formField = [self.dataSource.allFields objectForKey:stringKey]; formField.value = newStringValue; // update field [self.dataSource updateValuesWithDictionary:@{stringKey: newStringValue}]; // update value ``` My thought (and hope) was that ```formField.value```...

I added the method: ``` - (void)updateSelectField:(FORMFields *)formField withValue:(id)fieldValue { __weak typeof(self)weakSelf = self; [self fieldWithID:formField.fieldID includingHiddenFields:YES completion:^(FORMFields *field, NSIndexPath *indexPath) { if (field) { field.value = fieldValue; [weakSelf updateValuesWithDictionary:@{...

**fyi** After further usage and testing, I simplified the method to simply be: ``` - (void)updateSelectField:(FORMFields *)formField withValue:(id)fieldValue { if (formField && fieldValue != nil) { formField.value = fieldValue; [self...

@antoninbiret I can confirm fields not being updated automatically by RxEureka as well; forcing me to add `.onChange { row in row.updateCell() }` for each row. HD video attached to...

[SOLVED] @antoninbiret You are correct. _the binding from the viewModel to the row is not properly set_ I looked at your example again and you bind the actual `_textRow: TextRow`...

Doesn't this already exist through the use of `Other` and supplying a magnet URL?

Thank you @ThXou.

Fixed: https://github.com/sedwo/TPKeyboardAvoiding/commit/f0fcc64cb9d0d442ec4599fb619def8162406231

After countless more testing on iOS 12 and 13, because I was getting different UX results, I discovered this: https://stackoverflow.com/a/57861125/7599 Which results in: (using [Snapkit](https://github.com/SnapKit/SnapKit)) ``` extendedLayoutIncludesOpaqueBars = true self.tableView.snp.remakeConstraints...