CountryPickerView
CountryPickerView copied to clipboard
after cancelling search header is not showing.
Hi,
Actually, I'm presenting VC. After clicking the cancel button, that Close button BackView is not showing.
Here attaching the Video.
https://user-images.githubusercontent.com/23524697/141965986-25fccda6-fb69-4d06-9a09-a56a37e4fbc5.mov
Thank You.
.
Hi,
Can u help m with this? I'm still struct here 😒
There is a known issue in iOS 15
so just add this into the AppDelegate inside didFinishLaunchingWithOptions
and the problem will be fixed
if #available(iOS 15, *) {
let appearance = UINavigationBarAppearance()
appearance.configureWithOpaqueBackground()
UINavigationBar.appearance().standardAppearance = appearance
UINavigationBar.appearance().scrollEdgeAppearance = appearance
}