I’m having a problem with TestFlight. When I click on the TestFlight tap it redirects me to the main AppStore Connect page.What I did was the following... cleared my browser cache, tried different browsers (Safari and Chrome), different computes. I also managed to take a screenshot of the error before the page refreshes it said its error 500 see the screenshot https://imgur.com/a/IxHadi5
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I’m trying to apply for the Swift Student Challenge but the when I click apply it redirects me to https://developer.apple.com/maintenance/
Is this happening with anyone else?
I'm trying to programmatically take a screenshot of a view controller that has an AVPlayerViewController. The problem is that, when taking the screenshot on the simulator, the video player appears but on a real device the video player will appear as blank.
Here's the relevant code:
UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
[window drawViewHierarchyInRect:windowFrame afterScreenUpdates:afterScreenUpdates];
UIImage *screenShot = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();