Hi!
We write an app for vehicles using SmartDeviceLink framework. App streams it's UI to an external head unit via network and than receives back a messages containing information about touches and other user interactions.
The question is: How can send these received touches to UIWindow to let the system process it in usual way? All interfaces (including gesture recognizers) accept only UITouch based objects, but seems that valid UITouch and UIEvent objects could be created by system only.
So is there is a way to make system to process touch events which came from outside and not to implement a custom touches processing from zero?
Thanks in advance!