语义问题:函数’SY@R_502_6563@_VERSION_GREATER_THAN_OR_EQUAL_TO’的隐式声明在C99中无效
语义问题:函数’SY@R_502_6563@_VERSION_LESS_THAN’的隐式声明在C99中无效
相关的代码行位于Appirater.m文件中:
if (SY@R_502_6563@_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0") && SY@R_502_6563@_VERSION_LESS_THAN(@"7.1")) { revIEwURL = [templateRevIEwURliOS7 stringByReplacingOccurrencesOfString:@"APP_ID" withString:[Nsstring stringWithFormat:@"%@",_appID]]; }
我在How to check iOS version?发现了一组非常类似的宏
任何援助将不胜感激.
解决方法 将链接中的这些行添加到.pch文件中.清洁和建造.它应该消失.#define SY@R_502_6563@_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] sy@R_502_6563@Version] compare:v options:NSNumericSearch] == NSOrderedSame)#define SY@R_502_6563@_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] sy@R_502_6563@Version] compare:v options:NSNumericSearch] == NSOrderedDescending)#define SY@R_502_6563@_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] sy@R_502_6563@Version] compare:v options:NSNumericSearch] != NSOrderedAscending)#define SY@R_502_6563@_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] sy@R_502_6563@Version] compare:v options:NSNumericSearch] == NSOrderedAscending)#define SY@R_502_6563@_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] sy@R_502_6563@Version] compare:v options:NSNumericSearch] != NSOrderedDescending)
更多信息:由于预处理器无法找到它们来查找和替换这些宏,因此它们会传递到编译器,它们看起来像C函数.编译器找不到它们并给出错误.
总结以上是内存溢出为你收集整理的ios – 语义问题 – 函数的隐式声明全部内容,希望文章能够帮你解决ios – 语义问题 – 函数的隐式声明所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)