gpt4 book ai didi

ios - 将 Parse.com 1.11.0 添加到 watchOS 2

转载 作者:可可西里 更新时间:2023-11-01 05:43:26 25 4
gpt4 key购买 nike

在更新到 1.11.0 的 Parse SDK 中,它表示它支持 watchOS 和 tvOS。我想知道如何使用 Cocoapods 将框架添加到我的 watchOS 应用程序。 pod 文件包含 pod 'Parse' 并且我运行了 pod update 然后 pod install 但是当我向 watchOS 2 扩展添加桥接头时它说找不到文件。

你知道我应该做什么吗?

谢谢

最佳答案

好像是QuickStart watchOS 2 的说明尚未更新。我在 announcement either 中找不到任何信息。 .

如果您只需要在 WatchKit Extension 目标上使用 Parse,那么一个简单的 Podfile similar to this将工作:

# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
# Uncomment this line if you're using Swift
# use_frameworks!

target 'MyApp' do

end

target 'MyApp WatchKit App' do

end

target 'MyApp WatchKit Extension' do
platform :watchos, '2.0'
pod 'Parse', '~> 1.11'
end

但是,如果您需要在 iOS 目标和 WatchKit 扩展目标中都使用 Parse(例如,在 iOS 上注册推送通知并在 WatchKit 上与 Parse 通信),事情会稍微复杂一些。

由于 "Generated duplicate UUIDs" bug in CocoaPods , 你需要 to work around the issue ,首先在您的终端中运行:

export COCOAPODS_DISABLE_DETERMINISTIC_UUIDS=YES

接下来,您可以创建一个 Podfile,如下所示:

# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
# Uncomment this line if you're using Swift
# use_frameworks!

target 'MyApp' do
platform :ios, '8.0'
pod 'Parse', '~> 1.11'
end

target 'MyApp WatchKit App' do

end

target 'MyApp WatchKit Extension' do
platform :watchos, '2.0'
pod 'Parse', '~> 1.11'
end

最后,pod install,您应该可以开始了!

关于ios - 将 Parse.com 1.11.0 添加到 watchOS 2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34278343/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com