Crash on iPad pmap_enter failed with resource shortage

My app is currently crashing on iPad iOS 15.1. When I run the simulator on XCode, it is working fine, however, upon submission to the app store, I am told that it crashed upon updating the user's profile picture. Can anyone provide insight into why this is happening? Thank you!

I think the pmap_enter failed stuff is a red herring. If you look at the user-readable form of your crash reports, you see this:

Exception Type:  EXC_CRASH (SIGABRT)

which means that some code within your process called abort. Also this:

Last Exception Backtrace:
0   CoreFoundation  … __exceptionPreprocess + 220 …
1   libobjc.A.dylib … objc_exception_throw + 60 …
2   UIKitCore       … -[UIPopoverPresentationController presentationTransitionWillBegin] + 3940 …

Frames 1 through 0 indicate that the abort was the result of an unhandled language exception, and frame 3 shows that this come out of UIKit.

UIKit isn’t my specialism, so I’ve no insight into why it’s throwing this exception. I’ve retagged your question with UIKit in the hope that someone with more expertise in that space can chime in.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Crash on iPad pmap_enter failed with resource shortage
 
 
Q