SWRevealViewController - 获取后视高度

时间:2017-01-25 18:45:11

标签: ios xcode swift3 swrevealviewcontroller

我找到了一种获得后视图高度的方法,我需要它,因为我正在使用此代码来显示和隐藏活动指示器:

    func showActivityIndicator() {
    DispatchQueue.main.async {
        self.loadingView = UIView()
        self.loadingView.frame = CGRect(x: 0.0, y: 0.0, width: self.view.frame.width, height: self.view.frame.height)
        print("Width: \(self.revealViewController().view.frame.width)")
        print("Height: \(self.revealViewController().view.frame.height)")
        self.loadingView.center = self.view.center
        self.loadingView.backgroundColor = UIColor(rgba: "#111111")
        self.loadingView.alpha = 0.9
        self.loadingView.clipsToBounds = true


        self.spinner = UIActivityIndicatorView(activityIndicatorStyle: .whiteLarge)
        self.spinner.frame = CGRect(x: 0.0, y: 0.0, width: 80.0, height: 80.0)
        self.spinner.center = CGPoint(x:self.loadingView.bounds.size.width / 2, y:self.loadingView.bounds.size.height / 2)

        self.loadingView.addSubview(self.spinner)
        self.view.addSubview(self.loadingView)
        self.spinner.startAnimating()
    }
}

func hideActivityIndicator() {
    DispatchQueue.main.async {
        self.spinner.stopAnimating()
        self.loadingView.removeFromSuperview()
    }
}

但是没有在后视图的所有尺寸上显示活动,只是根据设备的尺寸显示。

这里有两张上下图片。

enter image description here enter image description here

也许退出另一种方式来做或我可以用它来修复它。

感谢您的帮助,

1 个答案:

答案 0 :(得分:0)

您是否尝试在

中找到某些属性
self.swrevealviewcontroller.height

我很久以前就用它了,我记得有一个属性,我几乎可以肯定!

希望它有所帮助!