0

I have implemented the AdWhirl to show different network Ads but while it shows the ads on my view and I tap to open the ad it crashes with the following displayed in the log

-[AdWhirlAdapterIAd helperNotifyDelegateOfFullScreenModal]: unrecognized selector sent to instance 0x9fce850 2012-12-08 19:40:27.571 ExerMemosApp[2294:1b203] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[AdWhirlAdapterIAd helperNotifyDelegateOfFullScreenModal]: unrecognized selector sent to instance 0x9fce850'

I searched too much but couldn't find solution. Give me suggestion to remove this error.

Thanks in advance

Till
  • 27,559
  • 13
  • 88
  • 122
iEinstein
  • 2,100
  • 1
  • 21
  • 32

2 Answers2

1

Are you sure that the AdWhirlAdNetworkAdapter+Helpers.h file is included in your project? Make sure everything under AdWhirl/Internal is correctly referenced in your build settings.

RajPara
  • 2,281
  • 1
  • 16
  • 9
  • Yeah that was miss but i use my hack and put all the delegate method in calling file But thanks for your answer – iEinstein Dec 13 '12 at 08:15
0

you are not having helperNotifyDelegateOfFullScreenModal method in your File. Check that one because the name says, its delegate method. you might forgot to implement that method

arthankamal
  • 6,341
  • 4
  • 36
  • 51
  • I searched and found in AdWhirlAdNetworkAdapter+Helpers.h file but call is not going to method only crash occuers. After that i have implemented the method adWhirlWillPresentFullScreenModal method which is delegate method of AdWhirl but response was same. Please tell me what to do. – iEinstein Dec 09 '12 at 09:47