将 Spotify SDK 与其他框架集成
Integration Spotify sdk with other framework
我正在尝试包括从官方下载的 Spotify github。
我复制/粘贴到我的项目中。
但是我无法导入 Spotify 库。
我认为这是因为我的 cocoapods 库已经安装了这个对应的 podfile:
use_frameworks!
target 'ApplicationTest' do
pod 'Facebook-iOS-SDK', '~> 3.21'
pod 'MBProgressHUD', '~> 0.9.1'
end
在 "Other Linker Flags" 我有:-ObjC -framework "FBSDKLoginKit" 等..
我不知道如何使用 Spotify 库
您需要通过应用的桥接 header.
导入 Spotify.h header 文件
如果您的项目中已有桥接 header,只需添加即可:
#import <Spotify/Spotify.h>
我正在尝试包括从官方下载的 Spotify github。 我复制/粘贴到我的项目中。
但是我无法导入 Spotify 库。
我认为这是因为我的 cocoapods 库已经安装了这个对应的 podfile:
use_frameworks!
target 'ApplicationTest' do
pod 'Facebook-iOS-SDK', '~> 3.21'
pod 'MBProgressHUD', '~> 0.9.1'
end
在 "Other Linker Flags" 我有:-ObjC -framework "FBSDKLoginKit" 等..
我不知道如何使用 Spotify 库
您需要通过应用的桥接 header.
导入 Spotify.h header 文件如果您的项目中已有桥接 header,只需添加即可:
#import <Spotify/Spotify.h>