我有一个Spritebuilder项目,我想与Soomla In App Purchase框架一起使用。在Spritebuilder中,我有一个带“store”的按钮作为cccontrol的选择器。在Soomla文档中,打开店面的代码是:
[[StorefrontController getInstance] openStoreWithParentViewController:self]; // 'self' is the calling UIViewController
通常在Xcode中,我会这样做:
- (void)store {
CCScene *storeAssets = [CCBReader loadAsScene:@"StoreAssets"];
[[CCDirector sharedDirector]replaceScene:storeAssets];
}
对于这种情况,我如何将Soomla代码集成到Spritebuilder中,因为它不使用UIViewController?
- (void)store {
//Soomla code
}