Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 926 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 926 Bytes

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];