Ionic geolocation is not working in ios

Not working even after adding the info.plist in config.xml file

here’s my code
this.geolocation.getCurrentPosition({enableHighAccuracy:true}).then((resp) => {
this.geoLatitude = resp.coords.latitude;
this.geoLongitude = resp.coords.longitude;

   })