mój sztandar admobów pokazuje się na górze

Mam baner admob w mojej aplikacji i zaimplementowałem go z dostarczoną dokumentacją AdMob, jedyne co się z nim dzieje to to, że nie wyświetla się na dole ekranu, ale zamiast tego na górze. Teraz szukam od dłuższego czasu, ale nie mogę znaleźć sposobu, aby to zmienić i nie mogę znaleźć nikogo, kto mógłby rozwiązać ten problem.

Ktoś wie, jak to naprawić?

Dzięki

EDYTOWAĆ

// Create a view of the standard size at the bottom of the screen.
// Available AdSize constants are explained in GADAdSize.h.
bannerView_ = [[GADBannerView alloc] initWithAdSize:kGADAdSizeBanner];

// Specify the ad's "unit identifier." This is your AdMob Publisher ID.
bannerView_.adUnitID = @"MYID";    
// Let the runtime know which UIViewController to restore after taking
// the user wherever the ad goes and add it to the view hierarchy.
bannerView_.rootViewController = self;
[self.view addSubview:bannerView_];

// Initiate a generic request to load it with an ad.
[bannerView_ loadRequest:[GADRequest request]];

szukałem liczb na wszystkich skryptach admob, ale nie mogę znaleźć żadnych do edycji ..

questionAnswers(3)

yourAnswerToTheQuestion