8
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【iOS】UINavigationControllerにViewをaddSubviewしてアプリ全体で表示し続ける方法

Last updated at Posted at 2017-09-02

アプリのトップにViewを表示し続ける方法は、UIApplicationからwindowを取得してaddSubviewすると表示できますが、

UIApplication.shared.keyWindow?.addSubview(view)

UINavigationControllerやUITabBarControllerを使っている場合は、それらのsubviewにすることで表示し続けることもできます。

let view = UIView.init(frame: CGRect(x: 0, y: UIScreen.main.bounds.size.height - 50.0, width: UIScreen.main.bounds.size.width, height: 50.0))
view.backgroundColor = UIColor.yellow

self.navigationController?.view.addSubview(view)
navigationAddsubview.png

しかし、これだと追加したViewの下に本来表示されるViewが隠れてしまうことになります。

そこで、UINavigationControllerを継承したクラスを作り、ViewをaddSubviewしたタイミングで、**self.navigationController?.view.setNeedsLayout()**を呼び出して、viewDidLayoutSubviewsで元々のviewのサイズを再設定します。

NavigationController
override func viewDidLayoutSubviews() {
    super.viewDidLayoutSubviews()
    
    for subview in self.view.subviews {
        if subview.isKind(of: NSClassFromString("UINavigationTransitionView")!) {
            subview.frame.size.height = UIScreen.main.bounds.height - 50.0
        }
    }
}
navigationSizeChange.png

これで無事にサイズ変更ができました。

また、追加するViewをViewControllerで管理したい場合は、コンテナ機能を使ってchaildViewControllerに設定することができます。

self.navigationController?.addChildViewController(viewController)
self.navigationController?.view.addSubview(viewController.view)
self.navigationController?.didMove(toParentViewController: self)
8
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?