Implement Google Analytics in ios swift

前端 未结 5 755
半阙折子戏
半阙折子戏 2021-02-02 00:53

I am following the Analytics for iOS (developers.google.com/analytics/devguides/collection/ios/v3/?ver=swift) guide and I\'ve got errors in my Swift code Project that I can\'t f

5条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-02 01:20

    I faced the same problem. I could not import the "Google/Analytics.h" header as Xcode generate error. Because "Google/Analytics.h" header is not available in the 'GoogleAnalytics sdk' as mentioned in Google's Official page.

    So, i just used following line

    #import "GAI.h"
    

    Hope it will work just fine. Environment Xcode: 8.2 iOS :10.2

提交回复
热议问题