我喜欢这个video

我尝试清洁但未解决。我添加了GoogleMobileAds.framework

错误是“..ViewController.swift:12:8: Could not build Objective-C module 'GoogleMobileAds''

第12行:import GoogleMobileAds

最佳答案

在遵循Google的教程(https://developers.google.com/admob/ios/quick-start)时,我遇到了同样的问题

我还尝试通过手动添加@Luda解决方案并成功。之后,我决定通过使用Bridging-Header(添加Analytics Lib的方法相同)再次尝试CocoaPods:

  • 请按照此处的教程添加桥接头http://www.learnswiftonline.com/getting-started/adding-swift-bridging-header/
  • #import <GoogleMobileAds/GoogleMobileAds.h>添加到您的桥接头
  • 再次清理并构建,它将成功。
  • 07-26 00:58