IOS "Gesture Get cell location" "Click cell Get Indexpath"

Source: Internet
Author: User

How to get the cell location for finger clicks:

1, first create a long press (can be clicked or other gestures)

Uilongpressgesturerecognizer * Longgr = [[Uilongpressgesturerecognizer alloc] initwithtarget:self action: @selector ( Handlelongpress:)]

2, implemented in a method

-(void) Handlelongpress: (Uilongpressgesturerecognizer *) recognizer

{

If it is a start click

if (recognizer.state = = Uigesturerecognizerstatebegan)

{//Get the Indexpath of the current click

Cgpoint location = [recognizer LocationInView:self.tableView];

Nsindexpath * Indexpath = [Self.tableview indexpathforrowatpoint:location];

Calculates a rect based on index

CGRect Rectintableview = [Self.tableview Rectforrowatindexpath:cellindexpath];

CGRect Rectinsuperview = [Self.tableview convertrect:rectintableview toview:[self.tableview Superview]];

The Rectinsuperview here is the location of the cell that your current finger points to.

}

}

IOS "Gesture Get cell location" "Click cell Get Indexpath"

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.