Hi Vu Chau,
I have a single instance of an admob banner declared and I move it from view to view so it stays across the view the whole time. The first screen show is the top of the screen how it looked one of the times. and he said he was only touching the bottom half of the screen away from the banner and it randomly opened the ad video. and a few other times it has happened by it self. Im not sure if it could be from the [self.view addSubview:_gAd];. When i run test ads everything works fine and how its suppose to I cant get the banner to open when I try clicking on other parts of the screen
[_gAd setFrame:CGRectMake(0, 0, 320, 50)];
_gAd.rootViewController = self;
GADRequest *request = [GADRequest request];
request.testDevices = @[@"3a2daf821394d0d736475566e36357dc"];
[_gAd loadRequest:request];
[self.view addSubview:_gAd];

