1.The dependency `AFNetworking (~> 3.0)` is not used in any concrete target.
修改之前
platform:ios,'7.0'
pod 'MJRefresh', '~> 3.1.0'
pod 'SDWebImage', '~> 3.7.6'
修改之后:
platform:ios,'7.0'
target "OrIangeSwift" do
pod 'MJRefresh', '~> 3.1.0'
pod 'SDWebImage', '~> 3.7.6'
2.[!] Invalid `Podfile` file: syntax error, unexpected end-of-input, expecting keyword_end.
结尾加上end
修改后:
platform:ios,'7.0'
target "OrIangeSwift" do
pod 'MJRefresh', '~> 3.1.0'
pod 'SDWebImage', '~> 3.7.6'
end
网友评论