本来 podfile 文件里面写的是和github上提供的一样
platform :ios, '7.0'
pod 'SDWebImage', '~>3.8'
pod install 报错如下图:
image.png
修改podfile文件
platform :ios, '7.0'
target 'STPhotoBrowser' do
pod 'SDWebImage', '~>3.7'
end
STPhotoBrowser 是 target的名字 也就是你的项目名
然后再pod insrall 就可以了
网友评论