我正在为 iOS 8 开发 Xcode6 Beta 6。
我在导入的 LastFM Cocoa Pod 上遇到代码错误:
当我尝试编译时,但我似乎无法弄清楚导致错误的原因。(使用示例中的所有代码)
我的AppDelegate.m文件中不断出现以下错误:
Property 'cacheDelegate' not found on object of type 'LastFm *'
但是,我确保在我的LastFm.h文件中有以下代码:
@interface LastFm : NSObject
@property (unsafe_unretained, nonatomic) id <LastFmCache> cacheDelegate;
有没有想过为什么它会声称我没有在 LastFM 中设置该属性?不确定这是 iOS 8 的问题,还是我自己的错误?
感谢您的任何建议。