当前位置: 首页 > 工具软件 > GMGridView > 使用案例 >

GMGridView cell button

申屠浩歌
2023-12-01

在GMGridView的cell里面添加button的时候,不能响应touch up inside事件。

解决方法:https://github.com/gmoledina/GMGridView/issues/68

在gmgridview.m文件中作修改,添加以下方法可解决问题。

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
{
    if ( gestureRecognizer == _tapGesture || gestureRecognizer == _sortingLongPressGesture ) {
        if ( [touch.view isDescendantOfView:self] ) {
            // Test if the touched view is a subview of a control
            for ( UIView *view = touch.view ; view != self ; view = view.superview )
                if ( [view isKindOfClass:[UIControl class]] )
                    return NO;
        }
    }

    return YES;
}

转载于:https://www.cnblogs.com/usst/archive/2012/11/16/2774042.html

 类似资料:

相关阅读

相关文章

相关问答