在普通班级中使用SKProduct

时间:2012-05-22 15:37:44

标签: iphone objective-c ios in-app-purchase

我在我的项目中设置了StoreKit,我可以从应用商店获得产品信息,这一切都正常。

我现在要做的是在我的一个类中添加SKProduct作为实例变量,如下所示:

#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>

@interface VideoCell : UITableViewCell
{
    IBOutlet UILabel *title;
    IBOutlet UILabel *description;
    SKProduct *product;
}

@property (retain) IBOutlet UILabel *title;
@property (retain) IBOutlet UILabel *description;
@property (retain) SKProduct *product;

只有IBOutlet个变量才能正常工作,但SKProduct行有错误,如下所示:

Unknown type name 'SKProduct'

我很困惑,因为类名自动完成但实际上并没有编译......

有什么想法吗?

1 个答案:

答案 0 :(得分:9)

看起来你错过了导入:

#import <StoreKit/StoreKit.h>