在xlform上禁用条件行



我用xlform设置了一个部分,其中有一个bool字段,然后在它下面有一个文本字段。如果选择了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旧值:(id)旧值newValue:(id)新值{

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

以下是使用XLFormDescriptorDelegate的方法。这将在窗体上切换字段时更改状态。

@interface SomeClass() <XLFormDescriptorDelegate>
@end
@implementation SomeClass
- (void)formRowDescriptorValueHasChanged:(XLFormRowDescriptor *)formRow oldValue:(id)oldValue newValue:(id)newValue
{
    if([formRow.tag isEqualToString:@"boolFieldTag"] && [newValue boolValue])
    {
        self.otherRow.disabled = YES;
        [self.tableView reloadRowsAtIndexPaths:@[[self.form indexPathOfFormRow:self.otherRow]]
                              withRowAnimation:UITableViewRowAnimationNone];
    }
}
@end

在这个例子中,当我最初将行添加到表单时,我将其设置为一个属性。或者,您也可以使用:[self.form formRowWithTag:@"someTag"]

相关内容

  • 没有找到相关文章

最新更新