低版本的cocoapods的Podfile文件pod install可以正常运行
platform :ios, '8.0'
pod 'AFNetworking'
高版本的cocoapods的Podfile文件必须添加target
platform :ios, '8.0'
target "targetName" do
pod 'AFNetworking'
end
2022-10-01 08:06:33
低版本的cocoapods的Podfile文件pod install可以正常运行
platform :ios, '8.0'
pod 'AFNetworking'
高版本的cocoapods的Podfile文件必须添加target
platform :ios, '8.0'
target "targetName" do
pod 'AFNetworking'
end