How can I check if a UITableViewCell is completely visible on the screen (not cut off by the tab or nav bar)?
I can get the visible cells with this code:
NSArray *indexes = [_tableView indexPathsForVisibleRows];
but I want to exclude cells that are not entirely visible in the screen.