UIImagePickerController reloads view after its dismissed?

后端 未结 3 1745
鱼传尺愫
鱼传尺愫 2021-01-24 00:00

I create the picker:

UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.sourceType =  UIImagePickerControllerSourceTypeCa         


        
相关标签:
3条回答
  • 2021-01-24 00:40

    I had some kind of that issue and I'd tried to set presentation "Over full screen" and it worked without reloading

    0 讨论(0)
  • 2021-01-24 00:41

    Your app probably received a memory warning, which caused all view controllers who are not displayed on screen to unload their views. This is quite normal while you are in the image picker because the camera needs a lot of memory. The moment you dismiss the image picker your view controller reloads its view.

    As this is perfectly normal behavior, your app must deal with this situation correctly.

    0 讨论(0)
  • 2021-01-24 00:46

    I had a similar issue with this, I was displaying a popup during a long press gesture. It appeared as though the modal was not dismissed after the image was selected. However, the long press gesture event gets called several times, so a new popup was being displayed for every event. In my gesture handler I do something like this as to fix:

    if (![imagePickerPopoverController isPopoverVisible]){
       //show pop-up etc
    }
    
    0 讨论(0)
提交回复
热议问题