我有一排类型XLFormRowDescriptionTypeSelectorPush
我设置row.value
为自定义类Agreement
和row.addValidator(AgreementValidator())
我希望根据 Agreement.agree 的值(即"Accepted"
或"Declined"
)隐藏/显示另一个。
我不知道该怎么做。这是我到目前为止的位置:
other_row.hidden = NSPredicate(format:"$other_tag.value != "Accepted")
但是 other_tag 行的值是Agreement
而不是字符串。我怎么能与之相比Agreement.agree
?