是否可以让CKComponent没有处理轻击手势的视图?
我刚刚找到了这个解决方案:
...
+ (instancetype)newWithViewModel:(NewsComponentViewModel *)viewModel
{
CKComponent *comp = ...;
return [super
newWithView:{
[UIView class],
{CKComponentTapGestureAttribute(@selector(didTapView))}
}
component:comp];
}
答案 0 :(得分:1)
@itsthejb是对的。您必须有一个视图来处理操作。