Danke @rmaddy, ich habe dies direkt nach anderen Key-String-Paaren in Info.plist hinzugefügt und das Problem behoben:
<key>NSPhotoLibraryUsageDescription</key>
<string>Photo Library Access Warning</string>
Bearbeiten:
Ich hatte auch ähnliche Probleme mit verschiedenen Komponenten meiner App. Bis jetzt wurden alle diese Schlüssel hinzugefügt (nach dem Update auf Xcode8 / iOS10):
<key>NSPhotoLibraryUsageDescription</key>
<string>This app requires access to the photo library.</string>
<key>NSMicrophoneUsageDescription</key>
<string>This app does not require access to the microphone.</string>
<key>NSCameraUsageDescription</key>
<string>This app requires access to the camera.</string>
Unter diesem Link zu developer.apple.com finden Sie eine vollständige Liste der Schlüsselreferenzen für die Eigenschaftsliste.
Volle Liste:
Apple Music:
<key>NSAppleMusicUsageDescription</key>
<string>My description about why I need this capability</string>
Bluetooth:
<key>NSBluetoothPeripheralUsageDescription</key>
<string>My description about why I need this capability</string>
Kalender:
<key>NSCalendarsUsageDescription</key>
<string>My description about why I need this capability</string>
Kamera:
<key>NSCameraUsageDescription</key>
<string>My description about why I need this capability</string>
Kontakte:
<key>NSContactsUsageDescription</key>
<string>My description about why I need this capability</string>
FaceID:
<key>NSFaceIDUsageDescription</key>
<string>My description about why I need this capability</string>
Gesundheitsanteil:
<key>NSHealthShareUsageDescription</key>
<string>My description about why I need this capability</string>
Gesundheits-Update:
<key>NSHealthUpdateUsageDescription</key>
<string>My description about why I need this capability</string>
Heimtrikot:
<key>NSHomeKitUsageDescription</key>
<string>My description about why I need this capability</string>
Ort:
<key>NSLocationUsageDescription</key>
<string>My description about why I need this capability</string>
Ort (immer):
<key>NSLocationAlwaysUsageDescription</key>
<string>My description about why I need this capability</string>
Standort (bei Verwendung):
<key>NSLocationWhenInUseUsageDescription</key>
<string>My description about why I need this capability</string>
Mikrofon:
<key>NSMicrophoneUsageDescription</key>
<string>My description about why I need this capability</string>
Bewegung (Beschleunigungsmesser):
<key>NSMotionUsageDescription</key>
<string>My description about why I need this capability</string>
NFC (Nahfeldkommunikation):
<key>NFCReaderUsageDescription</key>
<string>My description about why I need this capability</string>
Fotobibliothek:
<key>NSPhotoLibraryUsageDescription</key>
<string>My description about why I need this capability</string>
Fotobibliothek (Nur-Schreib-Zugriff):
<key>NSPhotoLibraryAddUsageDescription</key>
<string>My description about why I need this capability</string>
Erinnerungen:
<key>NSRemindersUsageDescription</key>
<string>My description about why I need this capability</string>
Siri:
<key>NSSiriUsageDescription</key>
<string>My description about why I need this capability</string>
Spracherkennung:
<key>NSSpeechRecognitionUsageDescription</key>
<string>My description about why I need this capability</string>
NSPhotoLibraryUsageDescription
und Sie werden viele Beispiele finden.