未在 XLForms 中触发的事件



我正在使用XLForms来构建iOS应用程序。我在获取操作事件时遇到问题。我已经尝试了blockformSelector但我没有得到事件。

这是我的代码:

 XLFormRowDescriptor * buttonRow = [XLFormRowDescriptor formRowDescriptorWithTag:@"button" rowType:XLFormRowDescriptorTypeButton title:@"Button"];
 [buttonRow.cellConfig setObject:[UIColor colorWithRed:0.0 green:122.0/255.0 blue:1.0 alpha:1.0] forKey:@"textLabel.textColor"];
 buttonRow.action.formSelector = @selector(didTouchURLButton:);
 [section addFormRow:buttonRow];

我确实编译/运行了示例应用程序,没有问题。我不知道有什么区别。我没有使用Cocoa Pods,而是将代码插入到项目中。

几乎似乎委托设置不正确,但即使我self.form.delegate = self拨打电话,我仍然没有得到事件。

有什么想法吗?

问题是我有另一种方法首先拾取事件:

 -(void)didTouchButton:(XLFormRowDescriptor *)sender
{
     [self deselectFormRow:sender];
}

相关内容

  • 没有找到相关文章

最新更新