Pinterest SDK:"PDKClient not found",怎么了?

Pinterest SDK: "PDKClient not found", what's wrong?

我正在尝试将 Pinterest SDK 实施到我的 Swift 项目中。我遵循了这个安装指南:https://developers.pinterest.com/docs/sdks/ios/

我只是无法让这条线工作:

PDKClient.configureSharedInstanceWithAppId("0000") 

它继续导致 Use of unresolved identifier PDKClient

我该怎么办?

您需要在 class(我猜是 AppDelegate,对吧?)中导入 PinterestSDK。

所以,在 AppDelegate 的顶部,添加

import PinterestSDK

然后它应该找到 PDKClient 对象。