如何正确使用SimStoreKit

时间:2015-08-17 15:53:45

标签: ios ios-simulator storekit

#import <TargetConditionals.h>

#if TARGET_IPHONE_SIMULATOR
    #define kILSimAllowSimulatedStoreKit 1
    #define ILSimReplaceRealStoreKit 1
    #import <ILSimStoreKit.h>
#else
    #import <StoreKit/StoreKit.h>
#endif

我在ILSimStoreKit.h上收到错误

我将github中的所有文件复制到我的Project文件夹

  

https://github.com/millenomi/simstorekit

我想我错过了一些东西。我注意到Header在&lt; (尖括号)当用户标题通常在“(引号)

中时

1 个答案:

答案 0 :(得分:0)

来自github doc you mentioned in your question

  

您要导入StoreKit的位置,请替换:

#import <StoreKit/StoreKit.h>
     

#define ILSimReplaceRealStoreKit 1
#import "ILSimStoreKit.h"

您需要更改&lt;&gt;在您的导入行中带有“”。

此外:

  

库需要使用属性列表来模拟IAP服务器   使用环境变量设置的产品(在Xcode中,使用   项目&gt;编辑Active Executable并查看第二个选项卡进行设置   他们了)。您可以使用的Env变量和预期的格式   产品清单记录在ILSimSKPaymentQueue.h的顶部。