Touch events and gestures

Source: Internet
Author: User

I. Touch events inherent in uiview

-(Void) touchesbegan :( nsset *) touches withevent :( uievent *) event {uitouch * Touch = [touches anyobject]; If (touch. tapcount = 2) // double-click nslog (@ "++ +++ ++ % lu ", [Touch tapcount]); If (event. alltouches. count = 2) // two mobile phones touch nslog (@ "++ ++ % lu ", [event. alltouches count]);}

You only need to implement this event function. However, note that if you have a uitableview in uiviewcontroller and click this uitableview, the touch event will be truncated by uitableview.

Reference: http://www.cnblogs.com/syxchina/archive/2012/10/14/2723541.html

2. gesture uitapgesturerecognizer

Uitapgesturerecognizer can be added to any uiview control.

// The default value is single-host triggering uitapgesturerecognizer * tap = [[uitapgesturerecognizer alloc] initwithtarget: Self action: @ selector (dismisskeyboard :)]; [self. view addgesturerecognizer: tap]; // tap. numberoftapsrequired = 1; // Number of clicks // tap. numberoftouchesrequired = 1; // hand index... -(void) dismisskeyboard :( uitapgesturerecognizer *) tap {// todo}

 

Touch events and gestures

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.