Дякую @rmaddy, я додав це одразу після інших пар ключових рядків у Info.plist і вирішив проблему:
<key>NSPhotoLibraryUsageDescription</key>
<string>Photo Library Access Warning</string>
Редагувати:
У мене також виникли подібні проблеми з різними компонентами мого додатка. Закінчив додавати всі ці ключі до цього часу (після оновлення до 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>
Ознайомтесь із цим посиланням developer.apple.com, щоб отримати повний список ключових посилань списку властивостей.
Повний список:
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>
Календар:
<key>NSCalendarsUsageDescription</key>
<string>My description about why I need this capability</string>
Камера:
<key>NSCameraUsageDescription</key>
<string>My description about why I need this capability</string>
Контакти:
<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>
Частка здоров’я:
<key>NSHealthShareUsageDescription</key>
<string>My description about why I need this capability</string>
Оновлення здоров’я:
<key>NSHealthUpdateUsageDescription</key>
<string>My description about why I need this capability</string>
Домашній комплект:
<key>NSHomeKitUsageDescription</key>
<string>My description about why I need this capability</string>
Розташування:
<key>NSLocationUsageDescription</key>
<string>My description about why I need this capability</string>
Місцезнаходження (завжди):
<key>NSLocationAlwaysUsageDescription</key>
<string>My description about why I need this capability</string>
Місцезнаходження (коли використовується):
<key>NSLocationWhenInUseUsageDescription</key>
<string>My description about why I need this capability</string>
Мікрофон:
<key>NSMicrophoneUsageDescription</key>
<string>My description about why I need this capability</string>
Рух (Акселерометр):
<key>NSMotionUsageDescription</key>
<string>My description about why I need this capability</string>
NFC (зв'язок поблизу):
<key>NFCReaderUsageDescription</key>
<string>My description about why I need this capability</string>
Фотобібліотека:
<key>NSPhotoLibraryUsageDescription</key>
<string>My description about why I need this capability</string>
Фотобібліотека (доступ лише для запису):
<key>NSPhotoLibraryAddUsageDescription</key>
<string>My description about why I need this capability</string>
Нагадування:
<key>NSRemindersUsageDescription</key>
<string>My description about why I need this capability</string>
Сірі:
<key>NSSiriUsageDescription</key>
<string>My description about why I need this capability</string>
Розпізнавання мови:
<key>NSSpeechRecognitionUsageDescription</key>
<string>My description about why I need this capability</string>
NSPhotoLibraryUsageDescription
і ви знайдете безліч прикладів.