我有一个使用 xlform 设置的部分,其中有一个 bool 字段,然后是一个文本字段。如果选择了布尔值,我想禁用文本字段。我尝试了以下方法,但没有奏效
if ([[self.form valueForKey:@"pay"] isEqualToValue:@(1)]){
row.disabled = YES;
} else {
row.required = YES;
}
[section addFormRow:row];
有什么建议么?这是文档,花了很多时间搜索却找不到答案。
编辑:我开始认为字典的值不会动态更新。这很奇怪,因为可以随时在视图控制器的其他部分访问字典。
编辑
- (void)formRowDescriptorValueHasChangedTwo:(XLFormRowDescriptor *)formRow value:(id)value
{
[value isEqual:[self.formValues valueForKey:@"pay"]];
if([formRow.tag isEqualToString:@"pay"] && [value isEqual:[NSNumber numberWithBool:YES]])
{
self.price.disabled = NO;
self.price.required = YES;
[self.tableView reloadRowsAtIndexPaths:@[[self.form indexPathOfFormRow:self.price]]
withRowAnimation:UITableViewRowAnimationNone];
}
}
我得到了它的工作,但我有一个新的问题。
这是代码 - (void)formRowDescriptorValueHasChanged:(XLFormRowDescriptor *)formRow oldValue:(id)oldValue newValue:(id)newValue {
if([formRow.tag isEqualToString:@"now"] && [newValue isEqual:[NSNumber numberWithBool:YES]])
{
self.time.disabled = YES;
[self.tableView reloadRowsAtIndexPaths:@[[self.form indexPathOfFormRow:self.time]]
withRowAnimation:UITableViewRowAnimationAutomatic];
}
if([formRow.tag isEqualToString:@"pay"] && [newValue isEqual:[NSNumber numberWithBool:YES]])
{
self.price.disabled = NO;
self.price.required = YES;
[self.tableView reloadRowsAtIndexPaths:@[[self.form indexPathOfFormRow:self.price]]
withRowAnimation:UITableViewRowAnimationAutomatic];
}
}
当我单击第一行(现在)时,它会很好地禁用相应的行,但是当我单击第二行(支付)时,它会使现在禁用的行重新出现并且它使我想要出现在支付下的行消失。
编辑通过将动画更改为 UITableViewRowAnimationNone 使其工作