如何更改状态栏的框架?

时间:2016-01-31 03:01:37

标签: ios swift uikit uistatusbar

我尝试使用它来获取状态栏的框架:

var statusBarWindow = UIApplication.sharedApplication().valueForKey("statusBarWindow")

但是,当我尝试更改框架时,它表示值是不可变的:

statusBarWindow?.frame = CGRect(x: -oldViewFrame, y: statusBarWindow.frame.origin.y, width: statusBarWindow.frame.size.width, height: statusBarWindow.frame.size.height)

1 个答案:

答案 0 :(得分:2)

我会根据你在这个问题上写的关于你的意图的评论给你一个答案。

<强>解决方案

通过从侧边栏的prefersStatusBarHidden覆盖方法UIViewController,您可以在打开侧边栏(类似于Slack应用程序)时让状态栏消失。它应该类似于以下内容:

override func prefersStatusBarHidden() -> Bool {
    return true
}

您还可以使用以下两种方法修改此外观:preferredStatusBarStylepreferredStatusBarUpdateAnimation

示例

我做了一个简单的项目来说明这一点。可以通过许多不同的方式实现侧边栏,因此我将此示例基于弹出窗口。您的实施将取决于您实施侧栏的方式。

我制作了一个简单的故事板,每个故事板中有两个UIViewController和一个UIButton。单击第一个UIButton时,它将触发一个类型为Present As Popover的segue,它将显示第二个控制器。

第一个UIViewController中没有代码(一切都在故事板中完成),但第二个UIViewController有隐藏状态栏的代码。

我附上了故事板的截图和下面第二个UIViewController的代码。

//
//  PopController.swift
//  SidebarHideStatus
//
//  Created by Stefan Veis Pennerup on 31/01/16.
//  Copyright © 2016 Kumuluzz. All rights reserved.
//

import UIKit

class PopController: UIViewController {

    // MARK: - Storyboard actions

    @IBAction func backButtonPressed(sender: UIButton) {
        dismissViewControllerAnimated(true, completion: nil)
    }

    // MARK: - Status bar

    override func prefersStatusBarHidden() -> Bool {
        return true
    }
}

Storyboard of the example project, highlighting the segue attached to the <code>UIButton</code>

更新1 :OP使用UIView代替UIViewController作为侧边栏。

首先,我建议您将侧边栏分解为单独的UIViewController因为它将来会更加可重复使用,但这是一个完全不同的讨论,可以持续数天!

为了隐藏状态栏,您仍然需要使用我之前突出显示的回调方法,但您只需调用方法setNeedsStatusBarAppearanceUpdate即可手动更新它。

我已使用以下代码更新了初始UIViewController并删除了segue以演示此方法。

//
//  ViewController.swift
//  SidebarHideStatus
//
//  Created by Stefan Veis Pennerup on 31/01/16.
//  Copyright © 2016 Kumuluzz. All rights reserved.
//

import UIKit

class ViewController: UIViewController {

    // MARK: - Properties

    private var isSidebarShown = false

    // MARK: - Storyboard outlets

    @IBAction func buttonPressed(sender: UIButton) {
        isSidebarShown = !isSidebarShown
        setNeedsStatusBarAppearanceUpdate()
    }

    // MARK: - Status bar

    override func prefersStatusBarHidden() -> Bool {
        return isSidebarShown
    }

    override func preferredStatusBarUpdateAnimation() -> UIStatusBarAnimation {
        // NOTE: This method has no effect now when
        // using the method setNeedsStatusBarAppearanceUpdate()
        return .Slide
    }

}