是否可以确定用户是否UIView
可以看到我?
我的视图已subview
多次添加到Tab Bar Controller
。
该视图的每个实例都有一个NSTimer
更新视图的。
但是我不想更新用户不可见的视图。
这可能吗?
谢谢
Answers:
您可以检查是否:
view.superview != nil
我唯一想到的另一件事是,您的视图是否隐藏在其他视图的后面,并且由于这个原因而无法显示。您可能必须仔细阅读后面的所有视图,以查看它们是否模糊了您的视图。
对于到此为止的其他任何人:
要确定某个UIView是否在屏幕上某个地方,而不是进行检查superview != nil
,最好检查是否window != nil
。在前一种情况下,视图可能具有超级视图,但该超级视图不在屏幕上:
if (view.window != nil) {
// do stuff
}
当然,您还应该检查它是否为hidden
或是否具有alpha > 0
。
关于不希望NSTimer
在视图不可见时运行,应该尽可能手动隐藏这些视图,并在隐藏视图时停止计时器。但是,我完全不确定您在做什么。
po [self.view recursiveDescription]
子视图将显示在视图层次结构中,但它们view.window
始终为零。
self.view
也window
为零。是这样吗 (对不起,我答复延迟)
这将确定视图的框架是否在其所有父视图的边界之内(直到根视图)。一个实际的用例是确定子视图在滚动视图中是否(至少部分)可见。
func isVisible(view: UIView) -> Bool {
func isVisible(view: UIView, inView: UIView?) -> Bool {
guard let inView = inView else { return true }
let viewFrame = inView.convert(view.bounds, from: view)
if viewFrame.intersects(inView.bounds) {
return isVisible(view: view, inView: inView.superview)
}
return false
}
return isVisible(view: view, inView: view.superview)
}
func isVisible(view: UIView) -> Bool {
func isVisible(view: UIView, inView: UIView?) -> Bool {
guard let inView = inView else { return true }
let viewFrame = inView.convertRect(view.bounds, fromView: view)
if CGRectIntersectsRect(viewFrame, inView.bounds) {
return isVisible(view, inView: inView.superview)
}
return false
}
return isVisible(view, inView: view.superview)
}
潜在的改进:
alpha
和尊重hidden
。clipsToBounds
,因为如果为假,视图可能会超出其超级视图的范围。对我有用的解决方案是,首先检查视图是否具有窗口,然后遍历超级视图并检查是否:
到目前为止似乎工作良好。
public func isVisible(view: UIView) -> Bool {
if view.window == nil {
return false
}
var currentView: UIView = view
while let superview = currentView.superview {
if (superview.bounds).intersects(currentView.frame) == false {
return false;
}
if currentView.isHidden {
return false
}
currentView = superview
}
return true
}
我确实想知道用户是否可以看到视图,因此您必须考虑以下因素:
特别是前面视图的透明背景色可能会带来程序检查的问题。真正确定的唯一方法是制作视图的程序化快照,以将其与整个屏幕快照一起在其框架内进行检查和区分。但是,对于视图不够鲜明(例如全白)的视图,这将不起作用。
为了获得灵感,请参阅iOS Calabash服务器项目中的isViewVisible方法
经过测试的解决方案。
func isVisible(_ view: UIView) -> Bool {
if view.isHidden || view.superview == nil {
return false
}
if let rootViewController = UIApplication.shared.keyWindow?.rootViewController,
let rootView = rootViewController.view {
let viewFrame = view.convert(view.bounds, to: rootView)
let topSafeArea: CGFloat
let bottomSafeArea: CGFloat
if #available(iOS 11.0, *) {
topSafeArea = rootView.safeAreaInsets.top
bottomSafeArea = rootView.safeAreaInsets.bottom
} else {
topSafeArea = rootViewController.topLayoutGuide.length
bottomSafeArea = rootViewController.bottomLayoutGuide.length
}
return viewFrame.minX >= 0 &&
viewFrame.maxX <= rootView.bounds.width &&
viewFrame.minY >= topSafeArea &&
viewFrame.maxY <= rootView.bounds.height - bottomSafeArea
}
return false
}
在viewWillAppear中将值“ isVisible”设置为true,在viewWillDisappear中将其设置为false。了解UITabBarController子视图的最佳方法,也适用于导航控制器。
我对@Audrey M.和@John Gibb的解决方案进行了基准测试。
@Audrey M.的方式表现更好(10次)。
所以我用那个使它可观察。
我制作了一个RxSwift Observable,以便在UIView可见时得到通知。
如果您要触发横幅“查看”事件,这可能会很有用
import Foundation
import UIKit
import RxSwift
extension UIView {
var isVisibleToUser: Bool {
if isHidden || alpha == 0 || superview == nil {
return false
}
guard let rootViewController = UIApplication.shared.keyWindow?.rootViewController else {
return false
}
let viewFrame = convert(bounds, to: rootViewController.view)
let topSafeArea: CGFloat
let bottomSafeArea: CGFloat
if #available(iOS 11.0, *) {
topSafeArea = rootViewController.view.safeAreaInsets.top
bottomSafeArea = rootViewController.view.safeAreaInsets.bottom
} else {
topSafeArea = rootViewController.topLayoutGuide.length
bottomSafeArea = rootViewController.bottomLayoutGuide.length
}
return viewFrame.minX >= 0 &&
viewFrame.maxX <= rootViewController.view.bounds.width &&
viewFrame.minY >= topSafeArea &&
viewFrame.maxY <= rootViewController.view.bounds.height - bottomSafeArea
}
}
extension Reactive where Base: UIView {
var isVisibleToUser: Observable<Bool> {
// Every second this will check `isVisibleToUser`
return Observable<Int>.interval(.milliseconds(1000),
scheduler: MainScheduler.instance)
.flatMap { [base] _ in
return Observable.just(base.isVisibleToUser)
}.distinctUntilChanged()
}
}
像这样使用它:
import RxSwift
import UIKit
import Foundation
private let disposeBag = DisposeBag()
private func _checkBannerVisibility() {
bannerView.rx.isVisibleToUser
.filter { $0 }
.take(1) // Only trigger it once
.subscribe(onNext: { [weak self] _ in
// ... Do something
}).disposed(by: disposeBag)
}
这可以帮助您确定UIView是否是最顶层的视图。会有所帮助:
let visibleBool = view.superview?.subviews.last?.isEqual(view)
//have to check first whether it's nil (bc it's an optional)
//as well as the true/false
if let visibleBool = visibleBool where visibleBool { value
//can be seen on top
} else {
//maybe can be seen but not the topmost view
}
试试这个:
func isDisplayedInScreen() -> Bool
{
if (self == nil) {
return false
}
let screenRect = UIScreen.main.bounds
//
let rect = self.convert(self.frame, from: nil)
if (rect.isEmpty || rect.isNull) {
return false
}
// 若view 隐藏
if (self.isHidden) {
return false
}
//
if (self.superview == nil) {
return false
}
//
if (rect.size.equalTo(CGSize.zero)) {
return false
}
//
let intersectionRect = rect.intersection(screenRect)
if (intersectionRect.isEmpty || intersectionRect.isNull) {
return false
}
return true
}
.window
的答案.superview
(即,walkingbrad检查的答案),因为检查的答案(由mahboudz检查)在技术上不正确,并且对我造成了错误。