我已成功安装了带有cocoapods的Pinterest SDK,但是当我尝试导入PDKClient时,它说"没有这样的模块PDKClient"。
我的podfile:
target 'MyPin3' do
pod "PinterestSDK", :git => "https://github.com/pinterest/ios-pdk.git"
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for MyPin3
end
我绝对打开了我的xcworkspace,我尝试过clean + build。我已经查找了其他一些Stack Overflow答案(尝试删除框架搜索路径等)但没有运气。
任何帮助将不胜感激。谢谢。
答案 0 :(得分:2)
而不是PDKClient
,您应该导入PinterestSDK
。尝试这一行,它应该工作:
import PinterestSDK