美文网首页
忽略警告

忽略警告

作者: 阳仔_hy | 来源:发表于2018-06-23 20:10 被阅读0次

    当一个方法被弃用时,当这个方法不影响程序的使用,可以选择忽略警告

    方法弃用警告忽略如下
    #pragma clang diagnostic push
        #pragma clang diagnostic ignored "-Wdeprecated-declarations" 
          // 中间为警告代码
         UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"温馨提示" message:content delegate:now cancelButtonTitle:cancel otherButtonTitles:other, nil];
        #pragma clang diagnostic pop
    

    相关文章

      网友评论

          本文标题:忽略警告

          本文链接:https://www.haomeiwen.com/subject/qrxqqftx.html