ohh*_*hho 5 iphone xcode objective-c compiler-warnings
是否有#pragma覆盖编译时警告,例如:
warning: 'ADBannerContentSizeIdentifier480x32' is deprecated (declared at /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Library/Frameworks/iAd.framework/Headers/ADBannerView.h:111)
Run Code Online (Sandbox Code Playgroud)
我必须通过以下方式保持4.2之前iOS设备的兼容性:
NSString *iAdSize = (osVersion >= 4.2) ? ADBannerContentSizeIdentifierPortrait : ADBannerContentSizeIdentifier480x32;
Run Code Online (Sandbox Code Playgroud)
谢谢
就在这里
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wno-deprecated-declarations"
//deprecated function
#pragma clang diagnostic pop
Run Code Online (Sandbox Code Playgroud)
如果您想知道某个错误的正确语法是什么,只需在Xcode中找到它,然后查看快速帮助

| 归档时间: |
|
| 查看次数: |
3803 次 |
| 最近记录: |