Getting a weird crash in Crashlytics on while setting the `largeTitleTextAttributes` property of the `UINavigationBar`.
Crashlog
Fatal Exception: NSInvalidArgumentException
-[UINavigationBar setLargeTitleTextAttributes:]: unrecognized selector sent to instance 0x157736e0
But this code is already guarded with #available
if #available(iOS 11.0, *) {
navigationController?.navigationBar.largeTitleTextAttributes = [
.foregroundColor: Constants.Color.Home.title
]
}As per crashlytics carsh is happning on IOS 10, IOS 11 and IOS12
Any idea?