deprecated warnings in xcode and how to handle deprecation

后端 未结 3 1735
名媛妹妹
名媛妹妹 2020-12-10 02:56
if ([self respondsToSelector:@selector(dismissViewControllerAnimated:completion:)])
     {[[self presentingViewController] dismissViewControllerAnimated:YES completi         


        
3条回答
  •  [愿得一人]
    2020-12-10 03:15

    Yes Many warnings are of present and dismiss view modally to fix that Replace:

    in ios 6 these are:-

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

    2. [self presentViewController:vc animated:NO completion:nil];

提交回复
热议问题