Beforehand (perhaps earlier than iOS 17) UIDocumentPickerViewController
had a protracted press choice to delete a file, however this not exists.
UIDocumentPickerViewController *picker = [[UIDocumentPickerViewController alloc] initWithDocumentTypes:@[(NSString *)kUTTypeJPEG] inMode:UIDocumentPickerModeOpen];
picker.delegate = self;
picker.directoryURL = ubiquityURL;
picker.presentationController.delegate = self;
[self presentViewController:picker animated:YES completion:nil];
We’re having to inform our customers to go to the Information app to delete a file from iCloud Drive.
Is there one thing that I’m lacking that permits recordsdata to be deleted like earlier than?