I am finding when tableview is pinched with UIPinchGestureRecognizer declaring at cellForRowAtIndexPath. Now want to find indexPath of a particular cell that was pinched. so i wrote the like this...

- (void)pinchDetected:(UIPinchGestureRecognizer*)gestureRecognizer {
    CGPoint p = [gestureRecognizer locationInView:tblAccountsList];
    NSIndexPath *indexPath = [tblAccountsList indexPathForRowAtPoint:p];
    NSLog(@"indexPath.row = %@", indexPath.row);
    UITableViewCell *pinchedCell  = [tblAccountsList cellForRowAtIndexPath:indexPath];
    NSLog(@"pinchedCell = %@", pinchedCell);
}

Problem is in indexPath.row and cell both cases value am getting is null.

So, plz can someone help me to find the indexPath or row that was pinched.

link|improve this question

42% accept rate
5  
0% accept rate..! – Sarah Jan 10 at 11:02
What value you are getting for CGPoint p? – Aadhira Jan 10 at 11:26
p is x = 384, y = 331 – Ananth Jan 10 at 11:54
feedback

1 Answer

in cell for row method, set cell.tag = indexpath.row and

in - (void)pinchDetected:(UIPinchGestureRecognizer*)gestureRecognizer use UITableViewCell* cell = (UITableViewCell*)recognizer.view again from cell.tag you can get the row index.

link|improve this answer
Yeah..I tried like this, but not works... – Ananth Jan 10 at 11:56
what does it is showing, are u using custom cell? – vishy Jan 10 at 12:18
No, Iam not using custom cell. Again its showing null for cell.tag – Ananth Jan 10 at 12:22
can u show what u have written in cell for row method..? – vishy Jan 10 at 12:40
UITableViewCell *cell = [tblAccountsList dequeueReusableCellWithIdentifier:CellIdentifier]; cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; cell.tag = indexPath.row; UIPinchGestureRecognizer *pinchRecognizer = [[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector(pinchDetected:)]; [tblAccountsList addGestureRecognizer:pinchRecognizer]; [pinchRecognizer release]; – Ananth Jan 10 at 12:51
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.