私の iPhone アプリでは、Open GL GLKViewController を使用しています。シンプルなゲームです。GoogleAnalytics でゲームを追跡したいのですが、変更を提案されています
@interface AboutViewController : UIViewController
これとともに
#import "GAITrackedViewController.h"
@interface AboutViewController : GAITrackedViewController
しかし、私の場合、GLKViewControllerを使用しているため、それを削除してGAITrackedViewControllerを配置することはできません。Googleアナリティクスで追跡する方法はありますか?
@interface GameViewController : GLKViewController <UIAccelerometerDelegate>
{
.....
}