I had updated to iOS 14.6 and big sur 11.4. I only get the Console,Sources and Audit tabs when selecting my device or the simulator on Safari's web inspector. It is the same as Safari 14.1.1 und Safari Technology Preview 14.2.
Had anyone a solution ?
Post
Replies
Boosts
Views
Activity
Hello,
I had a similar problem. I prepared my app for iOS. I make my check for access to photo library als follow:
switch ([PHPhotoLibrary authorizationStatus]) {
case PHAuthorizationStatusNotDetermined: {
NSLog(@"----> Not Determined <----");
[PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus statusNew) {
switch (statusNew) {
case PHAuthorizationStatusDenied:
NSLog(@"----> Denied after Request <----");
break;
case PHAuthorizationStatusLimited:
NSLog(@"----> Limited after Request <----");
break;
case PHAuthorizationStatusAuthorized:
NSLog(@"----> Authorized after Request <----");
break;
case PHAuthorizationStatusRestricted:
NSLog(@"----> Restricted after Request <----");
break;
default:
break;
}
}];
break;
}
case PHAuthorizationStatusDenied:
NSLog(@"----> Denied <----");
break;
case PHAuthorizationStatusLimited:
NSLog(@"----> Limited <----");
break;
case PHAuthorizationStatusAuthorized:
NSLog(@"----> Authorized <----");
break;
case PHAuthorizationStatusRestricted:
NSLog(@"----> Restricted <----");
break;
default:
break;
}
If I select choose photos I only get the PHAuthorizationStatusAuthorized and not PHAuthorizationStatusLimited. Is there a bug in this api or what I do wrong ?