星五博客

判断cell是否显示,比如轮播页cell隐藏时不滚动

//判断下cell是否显示
if (!CGRectIntersectsRect(cell.frame, CGRectMake(tableView.frame.origin.x,
                                                 tableView.frame.origin.y,
                                                 tableView.frame.size.width,
                                                 tableView.frame.size.height))) {
    return;
}


IOS