I have a tableView with many values.
I want to get the first indexPath.row value of the table which is being displayed currently.
indexPath.row
How can I do
You can use: [self.tableView visibleCells]
[self.tableView visibleCells]
That will return a nsarray of UITableViewCell objects, each representing a visible cell in the receiving table view.
http://developer.apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UITableView_Class/Reference/Reference.html