How to simulate touch event ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T12:25:12Zhttp://stackoverflow.com/feeds/question/992299http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/992299/how-to-simulate-touch-event0 How to simulate touch event ?Robin2009-06-14T06:27:08Z2009-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#9923701Answer by Bluephlame for How to simulate touch event ?Bluephlame2009-06-14T07:33:35Z2009-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#9923801Answer by Diederik Hoogenboom for How to simulate touch event ?Diederik Hoogenboom2009-06-14T07:42:11Z2009-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#9923832Answer by Zydeco for How to simulate touch event ?Zydeco2009-06-14T07:45:04Z2009-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>