我目前正在使用精灵套件制作 iOS 游戏。在我的一个 SKScene(我的商店场景)中,用户可以观看 AdColony 广告。广告播放正常,但完成后,商店场景被解除分配,应用程序返回菜单屏幕。为什么会发生这种情况,我怎样才能在不解除分配的情况下返回商店场景?
编辑:这是我的代码
//User taps a button (really a skspritenode)
//UIAlertView pops up asking them to watch a video
alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
//User tapped button 1 (aka agreed to watch video)
if (buttonIndex == 1){
//Present video
[AdColony playVideoAdForZone:@"xxxxxxxxxxxxxxxxxxxx" withDelegate:self];
}];
}