platform:ios, “6.0”
pod 'AFNetworking', '~> 3.0.4'
What does ios and 6.0 mean? Does it mean that the minimum supported version of my pod's third-party library is ios6.0? Could you please give me some advice? Explanation.
曾经蜡笔没有小新2017-05-02 09:25:16
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
.