Problems dismissing and representing UIImagePickerController camera iOS8.4

前端 未结 2 960
太阳男子
太阳男子 2020-12-18 15:19

EDIT Problem reinstated from scratch.

I have a ViewController A which has a Navigation Bar Button which presents an

2条回答
  •  囚心锁ツ
    2020-12-18 16:01

    I believe this will work for you. Do!

     [self.presentingViewController dismissViewControllerAnimated:NO completion:^{
                   [RefrenceOfPreviousViewController dismissViewControllerAnimated:YES completion:^{
    
                   }];
               }];
    

    Instead of

     [self.presentingViewController.presentingViewController dismissViewControllerAnimated:NO completion:nil];
    

提交回复
热议问题