gpt4 book ai didi

ios - XLForms 中未触发的事件

转载 作者:可可西里 更新时间:2023-11-01 04:56:54 25 4
gpt4 key购买 nike

我正在使用 XLForms 构建一个 iOS 应用程序。我在获取 Action 事件时遇到问题。我已经尝试了 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,而是将代码插入到项目中。

委托(delegate)似乎没有正确设置,但即使我调用 self.form.delegate = self,我仍然没有收到事件。

有什么想法吗?

最佳答案

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

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

关于ios - XLForms 中未触发的事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30880403/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com