If I add an ImagePicker to a mobile screen that has toolbar buttons, and .SHOW it from the ToolbarButtonPressed event, as soon as an image is selected, the app crashes uncatchably.
If I call .show from a normal Button pressed event on the same screen, it works.
Perhaps not an ideal answer but in the past I have worked around a couple of these event hierarchy type crashes in iOS projects by using Timer.CallLater(0, WeakAddressOf MethodToDoTheThingLater) so that the current event handler (ToolbarButtonPressed in this case) completes before the next piece of UI is triggered.
Ah yes. Apple states in their docs that if you havenât defined the âwhy this app needs access to your photosâ string, your app will crash. This is true for all of the items which have that type of string required.
I presume the crash log, had Jeff been able to get it, would have told us that?
I think there might be a bug related to the crash log alert, because Greg mentioned being able to get the crash log from there but Jeff said that didnât work.