我正在尝试按照本教程实施应用内购买(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];
。它必须返回一个布尔值,但我们如何访问它?
干杯