platform :ios, “6.0”
pod 'AFNetworking', '~> 3.0.4'其中的 ios, 6.0是表示什么意思?意思是我 pod 的第三方库最低支持的版本是 ios6.0?麻烦大神给个解释.
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
6.0 refers to your compiled version. For example, if you plan to install the application at least 7.0, you would fill in 7.0.
It will detect third-party libraries. If the third-party library does not support 6.0, an error will be reported when executing pod install.
pod install
The platform is in 6.0+pod 'AFNetworking', '~>0'
6.0 refers to your compiled version.
For example, if you plan to install the application at least 7.0, you would fill in 7.0.
It will detect third-party libraries. If the third-party library does not support 6.0, an error will be reported when executing
pod install
.The platform is in 6.0+
pod 'AFNetworking', '~>0'