Note that there are some explanatory texts on larger screens.

plurals
  1. POHow We Detect and Save the text Which is Written on iPhone/iPad Touch Screen?
    primarykey
    data
    text
    <p>I am having a Table view.<br> If i Write a Word/Text on the iPhone/iPod Touch Screen by using my Finger. </p> <p>Here my Task is<br> How we detect the text Which is written on the Screen?<br> also How we save that text in my Table ? </p> <p>Example Link: <a href="http://www.youtube.com/watch?v=wSBSTkvQIhA" rel="nofollow">See this</a></p> <p>Actually This is the Code What I Wrote For touchBegun, touchMoved, touchEnd events. This Works fine. But How Can I Achieve the above task?</p> <pre><code>- (void) touchesMoved:(NSSet *)toucheswithEvent:(UIEvent *)event { NSUInteger touchCount = [touches count]; NSUInteger tapCount = [[touches object] tapCount]; label.text = @"touchesMoved"; statusLabel.text = [NSString stringWithFormat:@"%d touches", touchCount]; tapStatusLabel.text = [NSString stringWithFormat:@"%d taps", tapCount]; } - (void) touchesBegan:(NSSet *)toucheswithEvent:(UIEvent *)event { NSUInteger touchCount = [touches count]; NSUInteger tapCount = [[touches object] tapCount]; label.text = @"touchesBegan"; statusLabel.text = [NSString stringWithFormat:@"%d touches", touchCount]; tapStatusLabel.text = [NSString stringWithFormat:@"%d taps", tapCount]; } - (void) touchesEnded:(NSSet *)toucheswithEvent:(UIEvent *)event { NSUInteger touchCount = [touches count]; NSUInteger tapCount = [[touches object] tapCount]; label.text = @"touchesEnded"; statusLabel.text = [NSString stringWithFormat:@"%d touches", touchCount]; tapStatusLabel.text = [NSString stringWithFormat:@"%d taps", tapCount]; } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload