Posts

Post marked as Apple Recommended
Thank you for your helpful reply. The release note states as you indicated.
Post not yet marked as solved
12 Replies
Tested with iOS 15.1 (19B74) on iPhone. Works just fine.
Post not yet marked as solved
2 Replies
Same problem when using simulator. Implemented routines with PDFDocument as well as CGPDFDocumentRef type calls giving the same incorrect results. Here is a subroutine code snippet demonstrating the pdf file appending procedure used in the app. Works on different devices and iOS/iPadOS versions prior to iOS 15 (all beta releases so far). {     /*      'appDelegate.pdfArray' contains entries of file paths for each pdf input file to be appended to the final output pdf located at 'pdfPathOutput'.      Had all files either pointed to 'NSApplicationSupportDirectory' or 'NSDocumentDirectory'. Outcome is the same.      */     NSString *pdfPathOutput = [appDelegate getPDFFileName:YES : LABELFILEDS];     NSURL *strURLOut = [[NSURL alloc] initFileURLWithPath:pdfPathOutput];     NSURL *strURLOutInit = [[NSURL alloc] initFileURLWithPath:[appDelegate.pdfArray objectAtIndex:0]];     //Initializes the new PDF with the first pdf from the path Array     PDFDocument *newPdfDocument = [[PDFDocument alloc]initWithURL:strURLOutInit];     // Start append loop with second pdf input file from array     for(NSInteger jj = 1;jj < [appDelegate.pdfArray count];jj++)     {         NSString *source = [appDelegate.pdfArray objectAtIndex:jj];         NSURL *strURL = [[NSURL alloc] initFileURLWithPath:source];         PDFDocument *currentPdfDocument = [[PDFDocument alloc] initWithURL:strURL];         if(currentPdfDocument)         {             for(NSInteger kk = 0; kk < currentPdfDocument.pageCount;kk++)             {                 // Insert page at zero-based pageAtIndex kk                 [newPdfDocument insertPage:[currentPdfDocument pageAtIndex:kk]atIndex:jj];             }             [currentPdfDocument release];         }         [strURL release];     }     [newPdfDocument writeToURL:strURLOut];     [strURLOut release];     [newPdfDocument release];     [strURLOutInit release];     return pdfPathOutput; //Returns the path of combined pdf result }
Post not yet marked as solved
12 Replies
Retested apps under iOS 15 beta 2, and problem still persists. Can anyone at Apple support please look into this and provide some feedback?
Post not yet marked as solved
11 Replies
Encountered the same issue and eventually solved it by Defining my unique ServiceType in the PeerToPeer handler (peertrack is fictional, use your own Type) #define kMCSessionServiceType @“peertrack” 2. Making the following .plist entries: &lt;key&gt;NSLocalNetworkUsageDescription&lt;/key&gt; &lt;string&gt;Exchange data with nearby devices running the PeerTrack app.&lt;/string&gt; &lt;key&gt;NSBonjourServices&lt;/key&gt; &lt;array&gt; &lt;string&gt;_peertrack._tcp&lt;/string&gt; &lt;/array&gt; 3. Executing the Service Advertiser and Service Browser (pseudo code) . . [MCNearbyServiceAdvertiser alloc] initWithPeer:localPeerID discoveryInfo:nil serviceType:kMCSessionServiceType]; . . and . . [[MCNearbyServiceBrowser alloc] initWithPeer:localPeerID serviceType:kMCSessionServiceType]; 4. Compiled app with Xcode 12.0 beta and Xcode 11.5. Successfully tested the code on multiple iPhone, iPad, and simulator devices, running iOS 9.0, iOS 13.5, and iOS 14.0 beta. NOTE the&#9;leading underscore (_) character in the .plist NSBonjourServices definition entry. Test failed without the leading underscore character, although not included in the kMCSessionServiceType used by MCNearbyServiceAdvertiser and MCNearbyServiceBrowser. Hope that this is helpful to someone by cutting down on debug time.
Post not yet marked as solved
11 Replies
Post not yet marked as solved
6 Replies
I am not sure if this applicable to your case, but want to share anyway:Had app review stuck in reject status because of App Preview (unrelated to reason for app publication) was not accptable due to some reason.Was unable to delete any of the App Previews in App Store Connect Media Manager because the App Previews were not shown as present, although the Screen Shots were.Eventually was able to remove the App Previews with Media Manager using a different Mac device with Safari 12.1.2 running on macOS Mojave 10.14.6.Could not accomplish this on the primary developer machine with latest release of Safari 13.0.2 running on macOS Catalina 10.15. Opened an incident report with Apple Developer Program Support.I believe the problem occurs with App Previews created in the past for 4.7-inch Display and below. Hope that this might be of help to someone.
Post marked as solved
4 Replies
Was able to remove the App Previews with Media Manager using Safari 12.1.2 running on macOS Mojave 10.14.6. Could not accomplish this with latest release of Safari 13.0.2 running on macOS Catalina 10.15. Opened an incident report with Apple Developer Program Support.I believe the problem occurs with App Previews created in the past for 4.7-inch Display and below. Hope that this might be of help to someone.