使用 Xcode 在 Swift 中将 CocoaPods 的默认选项设置为 OSX 而不是 IOS 的 Pod Init?
Pod Init with default option set to OSX & not IOS for CocoaPods in Swift using Xcode?
我关闭了我的 Xcode 项目并进入项目目录并键入
pod init
它制作了一个 Podfile 就像
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'Test1' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Test1
end
注意第二行 - platform :ios, '9.0' 但我的是 Mac 桌面应用程序
所以我不得不手动更改它以使用 平台 :osx, '10.12'
# Uncomment the next line to define a global platform for your project
# platform :osx, '10.12'
target 'Test1' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Test1
end
是否可以直接为 Mac 桌面应用程序创建一个选项,例如 pod init --mac 或类似的东西?
目前没有选项 --mac 或任何等效项。
您可以在此处检查 pod init 的所有可用选项:https://guides.cocoapods.org/terminal/commands.html#pod_init
我关闭了我的 Xcode 项目并进入项目目录并键入
pod init
它制作了一个 Podfile 就像
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'Test1' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Test1
end
注意第二行 - platform :ios, '9.0' 但我的是 Mac 桌面应用程序
所以我不得不手动更改它以使用 平台 :osx, '10.12'
# Uncomment the next line to define a global platform for your project
# platform :osx, '10.12'
target 'Test1' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Test1
end
是否可以直接为 Mac 桌面应用程序创建一个选项,例如 pod init --mac 或类似的东西?
目前没有选项 --mac 或任何等效项。
您可以在此处检查 pod init 的所有可用选项:https://guides.cocoapods.org/terminal/commands.html#pod_init