Applovin SDK を Cocos2d-x iOS アプリに統合したいのですが、デリゲートが機能しません。
[ALInterstitialAd shared].adDisplayDelegate = self; << Error: Use of undeclared identifier 'self'
[ALInterstitialAd showOver:[[UIApplication sharedApplication] keyWindow]];
また
objClass *obj1 = [objClass alloc];
[ALInterstitialAd shared].adDisplayDelegate = obj1; << Error: assigning 'id<ALAdDisplayDelegate>' from incompatibile type "objClass *"
また
init: objClass* obj1 = [[objClass alloc] init];
[ALInterstitialAd shared].adDisplayDelegate = obj1; << Error: assigning 'id<ALAdDisplayDelegate>' from incompatibile type "objClass *"
これを修正する方法は?それらのリスナーイベントをキャプチャしたい。