swift 4中的pod’GoogleAnalytics’无法运行
我在我的应用程序https://developers.google.com/analytics/devguides/collection/ios/v3/?ver=swift中阅读了此说明以使用谷歌分析,因此我将pod’GoogleAnalytics’安装到我的应用程序中并创建了一个.h我的swift应用程序中的文件,所以这是我的应用程序中的h文件代码
#ifndef analytic_h #define analytic_h #import #endif /* analytic_h */
这是我的app代表代码但是此代码无法识别GAI
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. guard let gai = GAI.sharedInstance() else { assert(false, "Google Analytics not configured correctly") } gai.tracker(withTrackingId: "UA-xxxxxxxxx-x") // Optional: automatically report uncaught exceptions. gai.trackUncaughtExceptions = true // Optional: set Logger to VERBOSE for debug information. // Remove before app release. gai.logger.logLevel = .verbose; return true }
我收到了GAI的这个错误
使用未解析的标识符’GAI’
我对此的研究 –
案例1-手动添加桥接头
我在项目中添加了名为“MyProject-Bridging-Header.h”的.h文件。 我收到了一份内容文件 –
#ifndef MyProject-Bridging-Header_h #define MyProject-Bridging-Header_h #endif /* MyProject-Bridging-Header_h */
然后我尝试添加以下其中一项 –
#import #import
但他们都没有工作。
案例2 – 自动添加桥接头
为此,我添加了“Objective-C File”,它提示自动添加桥接头,我接受了。 在那个桥接头文件中,我补充道
#import
然后它就像一个魅力,然后,我删除了上面的线,并添加 –
#import
它未能找到Google / Analytics.h。