一、View想关操作
- 判断两个View是否是另一个View的子View
BOOL res = [view isDescendantOfView:self.view];
- 判断当前Cell是否显示
- (BOOL)isShowCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath {
CGRect rect = [tableView rectForRowAtIndexPath:indexPath];
return CGRectIntersectsRect(tableView.bounds, rect);
}