Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to know if a tableview cell is currently visible? I have a tableview whose first cell(0) is a uisearchbar. If a search is not active, then hide cell 0 via an offset. When the table only has a few rows, the row 0 is visible. How to determine if row 0 is visible or is the top row?

share|improve this question

3 Answers

up vote 22 down vote accepted

UITableView has an instance method called indexPathsForVisibleRows that will return an NSArray of NSIndexPath objects for each row in the table currently visible. You could check this method with whatever frequency you need to and check for the proper row. For instance, if tableView is a reference to your table, the following method would tell you whether or not row 0 is on screen:

-(BOOL)isRowZeroVisible {
  NSArray *indexes = [tableView indexPathsForVisibleRows];
  for (NSIndexPath *index in indexes) {
    if (index.row == 0) {
      return YES;
    }
  }

  return NO;
}

Because the UITableView method returns the NSIndexPath, you can just as easily extend this to look for sections, or row/section combinations.

This is more useful to you than the visibleCells method, which returns an array of table cell objects. Table cell objects get recycled, so in large tables they will ultimately have no simple correlation back to your data source.

share|improve this answer
thank you! it was very helpful, but it should be "indexPathsForVisibleRows" not "indexPathsForvisibleRows" – mklfarha Mar 18 '11 at 0:10
Thanks for this answer.Star is missing. "for (NSIndexPath *index in indexes) {" – Sijo Jun 27 '11 at 14:55
2  
@Devunwired I have a followup question. What if I want to check if a row is fully visible. Your code is fine except it also return YES if the row is only partially visible. Thanks! – pixelfreak Oct 2 '11 at 0:20
1  
Note that instead of using a for statement to loop thru all the indexes in the array, if you are looking for the row of index 0 of section 0, it is probably easier to directly write BOOL isRowZeroVisible = [[tableView indexPathsForVisibleRows] containsObject:[NSIndexPath indexPathWithRow:0 inSection:0]]; – AliSoftware Oct 2 '11 at 21:15

To checking tableview cell is visible or not use this code of line

    if(![tableView.indexPathsForVisibleRows containsObject:newIndexPath])
    {
       // your code 
    }

here newIndexPath is IndexPath of checking cell.....

share|improve this answer
I got your reply on retain count on chat thank you...I asked the same question here stackoverflow.com/questions/12990128/… but I got negative marks..:( also, +1 for this.. – Dilip Rajkumar Oct 30 '12 at 9:10

IOS 4:

NSArray *cellsVisible = [tableView indexPathsForVisibleRows];
NSUInteger idx = NSNotFound;
idx = [cellsVisible indexOfObjectsPassingTest:^BOOL(id obj, NSUInteger idx, BOOL *stop)
{
    return ([(NSIndexPath *)obj compare:indexPath] == NSOrderedSame);
}];

if (idx == NSNotFound)
{
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.