如何判断UIView是否在屏幕上可见?

时间:2008-09-26 22:07:00

标签: iphone objective-c cocoa-touch

如果我有一个可见的UIView(或UIView子类),如何判断它当前是否显示在屏幕上(而不是,例如,在一部分中目前在屏幕外的滚动视图?

为了让您更好地了解我的意思,UITableView有几种方法可以确定当前可见单元格的集合。我正在寻找一些可以对任何给定的UIView做出类似决定的代码。

4 个答案:

答案 0 :(得分:10)

尚未尝试任何此类操作。但CGRectIntersectsRect()-[UIView convertRect:to(from)View]-[UIScrollView contentOffset]似乎是您的基本构建块。

答案 1 :(得分:2)

以下是我用来检查哪些UIViews在UIScrollView中可见的内容:

for(UIView* view in scrollView.subviews) {
    if([view isKindOfClass:[SomeView class]]) {

        // the parent of view of scrollView (which basically matches the application frame)
        CGRect f = self.view.frame; 
        // adjust our frame to match the scroll view's content offset
        f.origin.y = _scrollView.contentOffset.y;

        CGRect r = [self.view convertRect:view.frame toView:self.view];

        if(CGRectIntersectsRect(f, r)) {
            // view is visible
        }
    }
}

答案 2 :(得分:1)

我最近不得不检查我的视图是否在屏幕上。这对我有用:

CGRect viewFrame = self.view.frame;
CGRect appFrame = [[UIScreen mainScreen] applicationFrame];

// We may have received messages while this tableview is offscreen
if (CGRectIntersectsRect(viewFrame, appFrame)) {
    // Do work here
}

答案 3 :(得分:1)

如果您主要担心释放不在视图层次结构中的对象,则可以测试它是否具有超级视图,如:

if (myView.superview){
 //do something with myView because you can assume it is on the screen
}
else {
 //myView is not in the view hierarchy
}