我想将谷歌分析添加到我的应用程序中,我跟进了此链接中的说明https://developers.google.com/analytics/devguides/collection/ios/v3/#screen-tracking
我做了所有说明,我的问题是在我想用视图控制器测量的最后一步,我的视图控制器.h是:
@interface RootViewController : UIViewController<SectionHeaderViewDelegate, UITableViewDelegate,UIAlertViewDelegate>
在上面链接中给出的说明中,他们说我们必须导入#import "GAITrackedViewController.h"
,我们必须更新标题,如:
@interface RootViewController : GAITrackedViewController
@end
我的问题是我应该从UIViewController
更新@interface RootViewController : UIViewController<SectionHeaderViewDelegate, UITableViewDelegate,UIAlertViewDelegate>
至
@interface RootViewController : GAITrackedViewController<SectionHeaderViewDelegate, UITableViewDelegate,UIAlertViewDelegate>
????
请帮忙! 非常感谢。
答案 0 :(得分:1)
是。
您需要将继承从普通的UIViewController更改为Google跟踪的视图控制器,您还需要保留所有协议信息(&lt;&gt;中的内容)