Guest User

Untitled

a guest
Oct 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import UIKit
  2.  
  3. class BaseViewController: UIViewController {
  4.  
  5. var statusBarStyle: UIStatusBarStyle = .default {
  6. didSet {
  7. guard let navigationController = self.navigationController as? BaseNavigationViewController else { return }
  8. navigationController.statusBarStyle = statusBarStyle
  9. }
  10. }
  11.  
  12. // ....
  13. }
Add Comment
Please, Sign In to add comment