Posts

Post not yet marked as solved
27 Replies
Same issue over here. developer AT example.com got kicked. I changed the Apple-ID to jan.developer AT example.com and then it was accepted. Gmail users can add dots anywhere in the own name, so they should be able to do the same. But users at other domains might not have the same flexibility.
Post not yet marked as solved
6 Replies
It would be a good opportunity to reconsider if the app really needs direct Photos Library access or can work with just the image and video data. Is there any way to get the creation date of a video in the Photos Library without having direct access to it? The creation date of the picked result is not necessarily the same. Examples in a github project: https://github.com/Jan-E/ikyle.me-code-examples/blob/master/Photo%20Picker%20ObjC/Photo%20Picker%20ObjC/PHPickerController.m#L223
Post not yet marked as solved
6 Replies
The Objective-C way to get the assetIdentifier would be something like (void)selectPressed:(id)sender{ &#9;&#9;PHPhotoLibrary *photoLibrary = [PHPhotoLibrary sharedPhotoLibrary]; &#9;&#9;PHPickerConfiguration *config = [[PHPickerConfiguration alloc] initWithPhotoLibrary: photoLibrary]; &#9;&#9;config.selectionLimit = 1; &#9;&#9;config.filter = [PHPickerFilter videosFilter]; &#9;&#9;PHPickerViewController *pickerViewController = [[PHPickerViewController alloc] initWithConfiguration:config]; &#9;&#9;pickerViewController.delegate = self; &#9;&#9;[self presentViewController:pickerViewController animated:YES completion:nil]; } (void)picker:(PHPickerViewController *)picker didFinishPicking:(NSArray<PHPickerResult *> *)results{ &#9;&#9;[picker dismissViewControllerAnimated:YES completion:nil];&#9; &#9;&#9;for (PHPickerResult *result in results) { &#9;&#9;&#9;&#9;NSArray *assetIdentifiers = @[result.assetIdentifier]; &#9;&#9;&#9;&#9;PHFetchResult *assetResults = [PHAsset fetchAssetsWithLocalIdentifiers:assetIdentifiers options:nil]; &#9;&#9;&#9;&#9;// Do something with the assetResults if you have Photos Library access &#9;&#9;} }
Post not yet marked as solved
7 Replies
I am getting the same error in my own app. Xcode 11.4.1, iPadOS 13.4.1, Objective-C, using a WKWebView to a videoplayer.See https://stackoverflow.com/a/58889528/872051 as well.
Post not yet marked as solved
2 Replies
I cannot test it because Xcode 11.2.1 stays stuck endlessly on Preparing debugger support for my iPhone SE with iOS 13.2.3. The same Xcode version does not have any problems on my iPad Air 2 with iPadOS 13.2.3.