Posts

Post not yet marked as solved
0 Replies
481 Views
PHPhotoLibarary.requestAuthorization(for accessLevel: PHAccessLevel, handler: @escaping (PHAuthorizationStatus) -> Void) does not invoke the completion handler. If the user selects limited photos, the handler is not called. Furthermore the limited library picker is presented for about a second then it disappears. I already have the following in the info plist <string>Photo Library access is needed to import saved photos</string> <true/>        let stat = PHPhotoLibrary.authorizationStatus(for: .readWrite)       print("Photolibrary settign: current status: \(stat)")               PHPhotoLibrary.requestAuthorization(for: .readWrite) { status in         switch status {         case .restricted:           print("Photolibrary settign: restricted")         case .denied:           print("Photolibrary settign: denied")         case .limited:           print("Photolibrary settign: limited")         case .authorized:           print("Photolibrary settign: authorized")         case .notDetermined:           print("Photolibrary settign: not determined")         default:           break         }       }
Posted Last updated
.
Post not yet marked as solved
0 Replies
993 Views
Users of our app have been reporting network connection issues with iOS 13.3 beta. Our app store builds have been made using XCODE 11.1. If we make a build using XCODE 11.2.1 the issue persists unless the app is deleted and installed again.Those are the errors that we have encountered. error 12:45:08.744448-0800 CCC ONE Connection 19: default TLS Trust evaluation failed(-9807)error 12:45:08.744543-0800 CCC ONE Connection 19: TLS Trust encountered error 3:-9807error 12:45:08.744566-0800 CCC ONE Connection 19: encountered error(3:-9807)error 12:45:08.746941-0800 CCC ONE Connection 19: unable to determine interface type without an established connectionerror 12:45:08.748583-0800 CCC ONE Task &lt;01946605-2610-424E-A71E-830ED797EC98&gt;.&lt;0&gt; HTTP load failed, 0/0 bytes (error code: -1202 [3:-9807])error 12:45:08.748718-0800 CCC ONE NSURLConnection finished with error - code -1202
Posted Last updated
.