简体   繁体   English

UIImagePickerController在UpperCase Letters“USE_PHOTO”,“RETAKE”和Gallery Images“CAMERA_ROLL”中显示文本?

[英]UIImagePickerController shows text in UpperCase Letters “USE_PHOTO” , “RETAKE” and Gallery Images “CAMERA_ROLL”?

I am using the following code 我使用以下代码

func pickerImage(type type : String , presentInVc : UIViewController , pickedListner : onPicked , canceledListner : onCanceled){

        self.pickedListner = pickedListner
        self.canceledListner = canceledListner

        let picker : UIImagePickerController = UIImagePickerController()
        picker.sourceType = type == CameraMode.Camera ? .Camera : .PhotoLibrary
        picker.delegate = self
        picker.allowsEditing = false
        presentInVc.presentViewController(picker, animated: true, completion: nil)
    }

在此输入图像描述

I've faced the same issue and the problem was, we need to set "AppleLanguages" user defaults to allow system frameworks to load localized strings in the same language that is set. 我遇到了同样的问题,问题是,我们需要设置“AppleLanguages”用户默认值,以允许系统框架以所设置的相同语言加载本地化字符串。 I used the BundleLocalization library for localization and that was my main problem. 我使用BundleLocalization库进行本地化,这是我的主要问题。 Link: https://github.com/cmaftuleac/BundleLocalization 链接: https//github.com/cmaftuleac/BundleLocalization

Issue link: UIImagePickerController shows all text in weird capital case 问题链接: UIImagePickerController以奇怪的大写情况显示所有文本

Thanks 谢谢

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 带有覆盖的iOS 7 UIImagePickerController - 重新拍摄并使用不可用的照片 - iOS 7 UIImagePickerController with Overlay - retake and use photo not usable 相机“重拍”和“使用照片”按钮不起作用 - Camera " Retake " and " Use photo " buttons not working 使用UIImagePickerController自定义“使用”,“取消”,“重拍”和“倒车”按钮事件 - Custom “Use”, “Cancel”,“Retake” and “Reverse Camera” button event using UIImagePickerController UIImagePickerController 使用照片/重拍按钮不起作用 - UIImagePickerController Use Photo / Retake buttons don't work 如何在不移动使用照片和在iOS中重拍的情况下应用相机功能? - How to apply camera feature without moving to use photo and retake in iOS? 从相机拍摄照片后如何跳过“重新使用”选项 - How to skip 'retake and use' option after captureing photo from camera Swift:如何更改UIImagePickerController的“使用照片”,“取消”,“拍摄”,“重拍”按钮的默认行为 - Swift: how to change default behaviour of buttons “Use Photo”, “Cancel”, “Shoot”, “Retake” of UIImagePickerController UIImagePickerController在相机胶卷中打开 - UIImagePickerController open in camera roll 如何从相机胶卷和照片库中选择多个视频? - How to select multiple video from camera roll and photo Gallery? UIImagepickercontroller:是否可以更改相机胶卷中图像的排序顺序? - UIImagepickercontroller: is it possible to change the sort order of the images in camera roll?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM