diff --git a/JNPhoneNumberView.podspec b/JNPhoneNumberView.podspec index c5535b3..adc5b2b 100644 --- a/JNPhoneNumberView.podspec +++ b/JNPhoneNumberView.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "JNPhoneNumberView" - s.version = "1.0.5" + s.version = "1.0.6" s.summary = "Phone Number Validation with country dial code picker" s.description = "A view to show the country dial code and the phone number, you can click on the dial code and select another country from the countries picker, this view has a delegate methods to pass the international number and validity of it." s.homepage = "https://github.com/JNDisrupter" diff --git a/JNPhoneNumberView/Classes/JNPhoneNumberView.swift b/JNPhoneNumberView/Classes/JNPhoneNumberView.swift index c81d8ba..b6868f0 100644 --- a/JNPhoneNumberView/Classes/JNPhoneNumberView.swift +++ b/JNPhoneNumberView/Classes/JNPhoneNumberView.swift @@ -318,6 +318,7 @@ public class JNPhoneNumberView: UIView, UITextFieldDelegate { // Init navigation controller and present it let navigationController = UINavigationController(rootViewController: countriesPickerViewController) + navigationController.navigationBar.isTranslucent = false presenterViewController.present(navigationController, animated: true, completion: nil) } }