2018-08-14 去掉系统中的警告

#pragma clang diagnostic push

#pragma clang diagnostic ignored"-Wdeprecated-declarations"

    //写在这个中间的代码,都不会被编译器提示-Wdeprecated-declarations类型的警告

[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight];

#pragma clang diagnostic pop


可以去除某种类型的警告。上面的例子是去除函数过期的警告

你可能感兴趣的:(2018-08-14 去掉系统中的警告)