我正在尝试按照tutorial进行应用内购买(productID:PBonnet.TOEIC3.p。

首先,我添加了MKStoreKitConfigs.h:

#define kKlimtPictureSetId @"PBonnet.TOEIC3.Package1"


然后,我将产品添加到非消耗性类别的MKStoreKitConfigs.plist中。

然后,我添加了AppDelegate.m:

[MKStoreManager sharedManager];


然后,我在ViewController的ViewDidLoad中添加了我想知道是否已经购买package1的信息:

[MKStoreManager isFeaturePurchased:kKlimtPictureSetId];


我得到错误:

Use of undeclared identifier `MKStoreManager`


我尝试在ViewController中导入“ appdelegate.m”,但未找到。

我不知道如何使用方法[MKStoreManager isFeaturePurchased:kKlimtPictureSetId];。它必须返回一个布尔值,但是我们如何访问它呢?

干杯

最佳答案

将此行添加到您的ViewController.h

#import "MKStoreManager.h"

09-20 12:02