presentModalViewController:Animated is deprecated in ios6

前端 未结 5 1272
醉梦人生
醉梦人生 2020-12-07 14:19

I am using the following code for an image picker. But when I run it in the simulator, I have a memory leak and I get a warning about presentModalViewcontroller:animat

5条回答
  •  离开以前
    2020-12-07 15:12

    if ([self respondsToSelector:@selector(presentViewController:animated:completion:)])
    {
        [self presentViewController:objSignupViewController animated:^{} completion:nil];
    }
    else
    {
        [self presentModalViewController:objSignupViewController animated:YES];
    }
    

提交回复
热议问题