Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用FXForms创建了一个表单,其中包含一个开关输入和一个文本字段输入。
我一直在尝试锻炼如何使文本字段仅在 switch 语句为真时才可见,但没有成功并且在文档中找不到任何内容。
实现这一目标的最佳方法是什么?
我在 switch 字段中添加了一个 FXFormFieldAction,它调用了一个包含
self.formController.form = self.formController.form self.tableView.reloadData()
然后在func fields() -> [AnyObject]! {函数中,我创建一个 NSMutableArray,我可以在返回之前有条件地向其中添加字段。
func fields() -> [AnyObject]! {
该解决方案效果很好,我唯一缺少的是使字段更改动画化的能力。