Post

Replies

Boosts

Views

Activity

Reply to barTintColor not working in iOS 15
In case someone is having issues with navigation title font and color, add the following code to your extension    if let attributes = self.navigationController?.navigationBar.largeTitleTextAttributes {         barAppearance.largeTitleTextAttributes = attributes       }               if let attributes = self.navigationController?.navigationBar.titleTextAttributes {         barAppearance.titleTextAttributes = attributes       } hope it helps
Oct ’21