App crash with AdMob Request

My app crash with Admob GADRequest. I tried reinstall Admob, check the app ID and ad unit ID but no help. When I deleted this line

bannerView.load(GADRequest)

The app not crash anymore but I can't show ad. It crash on this line

class AppDelegate: UIResponder, UIApplicationDelegate{


banneeView.adUnitId= "xxxxx"  
      bannerView.delegate = self                                  
        bannerView.rootViewController = self 

        let requestAd: GADRequest = GADRequest() 
        requestAd.testDevices = [kGADSimulatorID] 
        bannerView.load(requestAd)
App crash with AdMob Request
 
 
Q