创建 podfile 并安装依赖项
在目录中如果是 xcodeproj,则创建一个名为 Podfile 的新文件。以下是将 Pod’AFNetworking’版本 1.0 安装到应用程序 MyApp 的 Podfile 示例。
target 'MyApp'
pod 'AFNetworking', '~> 1.0'
在目录中如果是 xcodeproj,则创建一个名为 Podfile 的新文件。以下是将 Pod’AFNetworking’版本 1.0 安装到应用程序 MyApp 的 Podfile 示例。
target 'MyApp'
pod 'AFNetworking', '~> 1.0'