Changing NavigationBar Title of UIImagePickerController in iOS13

233 Views Asked by At

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

There are 2 best solutions below

0
Shivam Parmar On

You can go with this code :-

 func navigationController(navigationController: UINavigationController, willShowViewController viewController: UIViewController, animated: Bool) {
        viewController.navigationItem.title = "customized title"
    }
0
Kishan Bhatiya On

You can try with following code:

func navigationController(navigationController: UINavigationController, willShowViewController viewController: UIViewController, animated: Bool) {
        self.navigationItem.title = "customized title"
}