imzyf / ios-swift-learning-notes

📝 iOS Swift Learning Notes - see Issues
MIT License
0 stars 0 forks source link

NavigationBar 相关 #43

Open imzyf opened 6 years ago

imzyf commented 6 years ago
let textAttributes = [NSAttributedStringKey.foregroundColor: UIColor.white]
        navigationController?.navigationBar.titleTextAttributes = textAttributes
imzyf commented 6 years ago

显示与隐藏

https://stackoverflow.com/questions/2926914/navigation-bar-show-hide

The Swift way to hide the navigation bar is:

self.navigationController?.setNavigationBarHidden(true, animated: true) To show it:

self.navigationController?.setNavigationBarHidden(false, animated: true)