3

In iOS 12 and before I can do below to customized album's first page's title.

func navigationController(_ navigationController: UINavigationController, willShow viewController: UIViewController, animated: Bool) {
    viewController.title = "customized title!!"
}

But it's not working at iOS 13 any more. Is there anyone could help me for customized that?

2 Answers2

0

You can go with this code :-

 func navigationController(navigationController: UINavigationController, willShowViewController viewController: UIViewController, animated: Bool) {
        viewController.navigationItem.title = "customized title"
    }
Shivam Parmar
  • 1,520
  • 11
  • 27
0

You can try with following code:

func navigationController(navigationController: UINavigationController, willShowViewController viewController: UIViewController, animated: Bool) {
        self.navigationItem.title = "customized title"
}
Kishan Bhatiya
  • 2,175
  • 8
  • 14