Ret70 / PTFakeTouch

Simulate touch events for iOS[User mode]

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PTFakeTouch

Simulate touch events for iOS [User mode]

Only enable in the application,and the system touch simulate libary: https://github.com/xuan32546/IOS13-SimulateTouch

Just build it and add this framework to your project. Then you can use it.

Addtions are from kif.

USE CASE

Click a point at screen

NSInteger pointId = [PTFakeTouch fakeTouchId:[PTFakeTouch getAvailablePointId] AtPoint:CGPointMake(100,100) withTouchPhase:UITouchPhaseBegan];
[PTFakeTouch fakeTouchId:pointId AtPoint:CGPointMake(100,100) withTouchPhase:UITouchPhaseEnded];

Swipe screen

NSInteger pointId = [PTFakeTouch fakeTouchId:[PTFakeTouch getAvailablePointId] AtPoint:CGPointMake(100,100) withTouchPhase:UITouchPhaseBegan];
[PTFakeTouch fakeTouchId:pointId AtPoint:CGPointMake(300,300) withTouchPhase:UITouchPhaseMoved];
[PTFakeTouch fakeTouchId:pointId AtPoint:CGPointMake(300,300) withTouchPhase:UITouchPhaseEnded];

About

Simulate touch events for iOS[User mode]


Languages

Language:Objective-C 99.8%Language:C 0.2%