在AppDelegate
中接收RevMobAdsDelegate
,但是下面的調用有錯誤。
[3496:207] [RevMob myapplication App]
SetChartBoostRequestFlag - StopLoadingWait
[3496:207] [RevMob myapplication App] StopLoadingWait routine
[3496:207] [RevMob] Starting RevMobAds
[3496:207] [RevMob] Initializing Fullscreen.
[3496:207] -[AppDelegate setFullscreen:]: unrecognized selector sent to instance 0xa20b4e0
(gdb)
已經將RevModAds添加到代碼中了。在加載的時候應用還會崩潰。
安裝RevMobads sdk http://sdk.revmob.com/ios.html#fullscreen
#define REVMOB_APP_ID @"50cd7e844ae728120000003f"
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[RevMobAds startSessionWithAppID:REVMOB_APP_ID];
[self showAds];
..
..
}
-(void)showAds //call this from game over, game pause
{
[[RevMobAds session] showFullscreen];
}
試試看