Google Analytics in iOS (Not Working)

后端 未结 4 1639
無奈伤痛
無奈伤痛 2020-12-14 18:44

I am trying to implement google analytics.. could you guys please help me

-(void) setGoogleAnalytics{

    // Initialize tracker.
    self.tracker = [[GAI sh         


        
4条回答
  •  再見小時候
    2020-12-14 19:27

    #import 
    #import 
    @protocol GAITracker;
    @interface GAITrackedViewController : UIViewController {
    @private
        id tracker_;
        NSString *trackedViewName_;
    }
    @property(nonatomic, assign)id tracker;
    @property(nonatomic, copy)NSString *trackedViewName;
    @end
    
    Paste this code on "GAITrackedViewController.h" file
    Then you can use self.trackedName = @"Some Name"; easly.
    

提交回复
热议问题