更新Pod1.0之后的问题

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

你可能感兴趣的:(更新Pod1.0之后的问题)