Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I get objectAtIndex in my Method.

For example if I use didSelectRowAtIndexPath:(NSIndexPath *)indexPath

i can get it with

 NSLog(@"%@", [currentCourses objectAtIndex:indexPath.row]);

how can i do the same in other method like this?

-(void)longPress : (UILongPressGestureRecognizer *)rec {
if (rec.state == UIGestureRecognizerStateBegan) {
 //   NSIndexPath *myPath = [NSIndexPath indexPathForRow:0 inSection:0];
    /*NSArray *currentCourses = [self currentCourses:myIP0.section];
    billContent *bc = [currentCourses objectAtIndex:myIP0.section];
    NSLog(@"title - %@", bc.billTitle);*/
  //  NSLog(@"%@", myPath.row);

  //NSLog(@"did selected - %d", indexPath.row);

}
}
share|improve this question

2 Answers

up vote 3 down vote accepted
-(void)longPress : (UILongPressGestureRecognizer *)rec {
CGPoint swipeLocation = [rec locationInView:self.tableView];
NSIndexPath *swipedIndexPath = [self.tableView indexPathForRowAtPoint:swipeLocation];
UITableViewCell *swipedCell = [self.tableView cellForRowAtIndexPath:swipedIndexPath];
}
share|improve this answer

Declare a static NSINdexpath *path;

didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

move value of [indexPath row] to this static path here }

in your method

-(void)longPress : (UILongPressGestureRecognizer *)rec { if (rec.state == UIGestureRecognizerStateBegan) {

NSLog(@"%@", [currentCourses objectAtIndex:path]);

}

try it

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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