Our app navigation bar is in white color, it is push a viewcontroller to load some html content in WKWebview, the content page has some videos. On tapping the video, WKWebview launching the Video player.
At this case, Users trying to change the subtitles, subtitle navigationbar background color is white as per parent and the done button in this screen also coming as white color(became not visible).
This theme is applying on to the navigation controller not for the Done button in the right side of Audio & Subtitle Screen.
Any tweaks to overcome this issue ?
At this case, Users trying to change the subtitles, subtitle navigationbar background color is white as per parent and the done button in this screen also coming as white color(became not visible).
Code Block language UINavigationBar.appearance().barTintColor = .green UINavigationBar.appearance().tintColor = .red UINavigationBar.appearance().titleTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.yellow] UINavigationBar.appearance().isTranslucent = false
This theme is applying on to the navigation controller not for the Done button in the right side of Audio & Subtitle Screen.
Any tweaks to overcome this issue ?