我有一个仍然支持iOS 5.1.1的旧项目,SDWebImage也应该支持这个。但是,当我运行项目时,我遇到了很多这样的错误:
Apple LLVM compiler 4.2 Error
Expected ';' after method prototype
它发生在这样的行上:
- (void)setImageWithURL:(NSURL *)url __deprecated_msg("Method deprecated. Use `sd_setImageWithURL:`");
我可以做些什么来让这个项目运行?非常感谢任何帮助。
答案 0 :(得分:0)
如果您正在使用CocoaPods,请确保在您的podfile中使用正确的目标iOS版本。
从项目文件夹中,使用您喜欢的文本编辑器(我喜欢nano)编辑podfile
nano podfile
或者您可能喜欢vi
vi podfile
确保声明目标iOS版本的顶部的行已正确设置:
platform :ios, '8.0'
或者在你的情况下,可能是
platform :ios, '5.1.1'