アプリが場所へのアクセスを要求している理由を指定するにはどうすればよいですか?許可モードアラートでの場所の使用を明確にしたいと思います。
Open your plist with source code, and add below
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Message for Always and when used desc</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>Message for Always used desc</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Message for when used desc</string>
IOSデバイスの場合、xCodeのInfo.plistファイルでNSLocationAlwaysUsageDescription
またはNSLocationWhenInUseUsageDescription
を直接指定する必要があります。その後、iOSはアラートで指定されたメッセージを自動的に表示します。