低版本的cocoapods的Podfile文件pod install可以正常运行

platform :ios, '8.0'
pod 'AFNetworking'

高版本的cocoapods的Podfile文件必须添加target

platform :ios, '8.0'
target "targetName" do
pod 'AFNetworking'
end

  

相关文章:

  • 2022-12-23
  • 2021-11-14
  • 2021-09-16
  • 2022-12-23
  • 2021-10-04
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-21
相关资源
相似解决方案