I want to change the text of "your usage message" as shown in the image. I'm using ionic and it only happens to iOS, the functions of getPicture con CameraOptions and ImagePickerOptions
my code:
sel_photo(){
let options:ImagePickerOptions = {
quality: 70,
outputType: 1,
maximumImagesCount: 1,
width: 600,
height: 600,
}
this.imagePicker.getPictures(options).then((results) => {
for (var i = 0; i < results.length; i++) {
this.imagenPreview = 'data:image/jpeg;base64,' + results[i];
this.imagen64 = results[i];
}
}, (err) => {
console.log('Error al seleccionar foto', JSON.stringify(err))
});
}