2
1

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.

NavigationBarの背景をスクロールの位置によって変える

Posted at

NavigationBarの背景をimageViewの上では透明に、imageViewの下までスクロールしたら変更する方法をメモ

// はじめにNavigationBarを透明に
override func viewDidAppear(_ animated: Bool) {
    navigationController?.navigationBar.tintColor = .white
    navigationController?.navigationBar.setBackgroundImage(UIImage(), for: .default)
    navigationController?.navigationBar.shadowImage = UIImage()
    navigationController?.navigationBar.isTranslucent = true
}

// scrollViewのデリゲートメソッド
func scrollViewDidScroll(_ scrollView: UIScrollView) {
    // imageViewの下までスクロールしたら NavigationBarの色を変更
    if scrollView.contentOffset.y > imageView.layer.frame.height - (navigationController?.navigationBar.frame.height)! - UIApplication.shared.statusBarFrame.height {
        // NavigationBarの背景色変更
        navigationController?.navigationBar.barTintColor = .white
        navigationController?.navigationBar.tintColor = .black
        navigationController?.navigationBar.setBackgroundImage(nil, for: .default)
        navigationController?.navigationBar.shadowImage = nil
       
    } else {
        navigationController?.navigationBar.tintColor = .white
        navigationController?.navigationBar.setBackgroundImage(UIImage(), for: .default)
        navigationController?.navigationBar.shadowImage = UIImage()
        navigationController?.navigationBar.isTranslucent = true
    }
}
2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?