when i use

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{
     NSArray *visibleCells = [my_table visibleCells];

i want to know the number of the row (in my_table) that is visible (with visibleCells).

For example, if i do

[visibleCells count];

i know that there are 5 rows visible, but i need to know the real number (for example: number 3, 4, 5, 6, 7 in the table view).

Is it possible?

link|improve this question

61% accept rate
feedback

2 Answers

You can call indexPathForCell: on the table view with the first and last objects of the array to get the two index paths.

link|improve this answer
thanks you but... how can i call indexPathForCell: for one specific cell? and how can i sei the NSIndexPath? – JJSaccolo Apr 22 '11 at 18:22
feedback

solved!

using this

UITableViewCell *currentCell = [visibleCells objectAtIndex:i];
NSIndexPath *indexPath = [tabella_gallery indexPathForCell:currentCell];

works fine!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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