How to simulate touch event ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T12:25:12Z http://stackoverflow.com/feeds/question/992299 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/992299/how-to-simulate-touch-event 0 How to simulate touch event ? Robin 2009-06-14T06:27:08Z 2009-06-14T07:45:04Z <p>as topic , I want fire touch event without user touch actions , </p> <p>does it possible ?</p> <p>thanks for your help in advance . </p> <p>Thanks . </p> http://stackoverflow.com/questions/992299/how-to-simulate-touch-event/992370#992370 1 Answer by Bluephlame for How to simulate touch event ? Bluephlame 2009-06-14T07:33:35Z 2009-06-14T07:33:35Z <p>you could manually call touches begin and touches end. </p> <p>I think there may be a better solution to whatever you are trying to do, This seems like a very unconventional thing to do.</p> http://stackoverflow.com/questions/992299/how-to-simulate-touch-event/992380#992380 1 Answer by Diederik Hoogenboom for How to simulate touch event ? Diederik Hoogenboom 2009-06-14T07:42:11Z 2009-06-14T07:42:11Z <p>Have a look at <code>UIResponder's touchesBegan:withEvent:</code> and <code>touchesEnded:withEvent:</code></p> http://stackoverflow.com/questions/992299/how-to-simulate-touch-event/992383#992383 2 Answer by Zydeco for How to simulate touch event ? Zydeco 2009-06-14T07:45:04Z 2009-06-14T07:45:04Z <p>Check this: <a href="http://cocoawithlove.com/2008/10/synthesizing-touch-event-on-iphone.html" rel="nofollow">Synthesizing a touch event on iPhone</a></p>