i want to be able to request interstitial test ads on iOS on the simulator this is the code I'm using
interstitial_ = [[GADInterstitial alloc] init];
interstitial_.adUnitID = @"XXXXXXXXXXXXXXXX";
[interstitial_ loadRequest:[GADRequest request]];
interstitial_.delegate = self;
thanks.