Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

无法滚动 #25

Open
yinjiahjk opened this issue Sep 8, 2021 · 0 comments
Open

无法滚动 #25

yinjiahjk opened this issue Sep 8, 2021 · 0 comments

Comments

@yinjiahjk
Copy link

  • (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent )event
    {
    UITouch
    touch = [touches anyObject];
    CGPoint originalLocation = [touch locationInView:self];
    originalLocation.x = 10;
    NSInteger pointId = [PTFakeMetaTouch fakeTouchId:[PTFakeMetaTouch getAvailablePointId] AtPoint:originalLocation withTouchPhase:UITouchPhaseBegan];
    [PTFakeMetaTouch fakeTouchId:pointId AtPoint:originalLocation withTouchPhase:UITouchPhaseBegan];
    }

  • (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent )event
    {
    UITouch
    touch = [touches anyObject];
    CGPoint originalLocation = [touch locationInView:self];
    originalLocation.x = 10;
    NSInteger pointId = [PTFakeMetaTouch fakeTouchId:[PTFakeMetaTouch getAvailablePointId] AtPoint:originalLocation withTouchPhase:UITouchPhaseMoved];
    [PTFakeMetaTouch fakeTouchId:pointId AtPoint:originalLocation withTouchPhase:UITouchPhaseMoved];
    }
    -(void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent )event
    {
    UITouch
    touch = [touches anyObject];
    CGPoint originalLocation = [touch locationInView:self];
    originalLocation.x = 10;
    NSInteger pointId = [PTFakeMetaTouch fakeTouchId:[PTFakeMetaTouch getAvailablePointId] AtPoint:originalLocation withTouchPhase:UITouchPhaseEnded];
    [PTFakeMetaTouch fakeTouchId:pointId AtPoint:originalLocation withTouchPhase:UITouchPhaseEnded];
    }

左边的列表无法滚动。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant