Is it okay to programmatically create UITouch and UIEvent objects to emulate touch events?
- by mystify
I want to simulate some touches on my UI, without using private API.
So one simple way to do it is to simply call those -touchesBegan:withEvent:, -touchesMoved:withEvent:, -touchesEnded:WithEvent: and -touchesCancelled:withEvent: methods inside my custom controls. For that, I would have to create UITouch and UIEvent dummy objects with appropriate data inside. Is this fine with them? Or would they reject my app?