我正在为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问题,还是仅仅是我的错误?
感谢您的任何建议。