我的应用程序能够根据用户从应用程序设置中选择的内容(而不是基于设备语言)支持不同的语言,因此当我的设备是英语且我的应用程序使用其他语言时,我打开图片库然后将其关闭整个应用程序的导航栏将更改位置,我想知道如何防止这种情况或如何基于应用程序语言而不是设备本身来强制照片库打开,以便在我关闭它时不会更改? >
let imagePicker = UIImagePickerController()
imagePicker.delegate = self
imagePicker.sourceType = .photoLibrary
imagePicker.allowsEditing = true
//self.navigationController?.pushViewController(imagePicker, animated: true)
present(imagePicker, animated: true, completion: nil)