We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
(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]; }
左边的列表无法滚动。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
(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];
}
左边的列表无法滚动。
The text was updated successfully, but these errors were encountered: