iosアプリのアナリティクス導入について公式ページをみながらやってみたのですがどうもうまくいかずに困っています。
https://developers.google.com/analytics/devguides/collection/ios/v3/
エラーなどは出ていないのですが24時間たっても計測がはじまらない状態です(お知らせが下記のままです
ヒットがありません
プロパティ「⚪︎⚪︎⚪︎⚪︎」でヒットが発生していません。
確認待ち | 元に戻す | 詳細
)。
objective-Cの知識がほとんどないので
初心者が見落としやすい部分や気をつけてたほうがいいことなども
ご教授頂けると幸いです。
フレームワークや必要なファイルは全て揃っているとおもいます。
AppDelegate.m
#import "GAI.h"
他
・
・
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
・
・
・
// Optional: automatically send uncaught exceptions to Google Analytics. [GAI sharedInstance].trackUncaughtExceptions = YES; // Optional: set Google Analytics dispatch interval to e.g. 20 seconds. [GAI sharedInstance].dispatchInterval = 20; // Optional: set Logger to VERBOSE for debug information. [[[GAI sharedInstance] logger] setLogLevel:kGAILogLevelVerbose]; // Initialize tracker. Replace with your tracking ID. [[GAI sharedInstance] trackerWithTrackingId:@"トラッキングコード"];
}
TimelineViewController.m
#import "TimelineViewController.h"
#import "AppDelegate.h"
#import "GAITrackedViewController.h"
他
_________________________
-(void)viewDidAppear:(BOOL)animated
{
[super viewWillAppear:animated]; self.screenName = @"timeline";
・
・
・
}
_________________________
ご指摘いただき上記を下記に変更いたしました
-(void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated]; self.screenName = @"timeline";
・
・
・
}
TimelineViewController.h
#import "GAITrackedViewController.h"
他
@interface TimelineViewController : GAITrackedViewController <UIWebViewDelegate, UISearchBarDelegate, UIAlertViewDelegate, UIScrollViewDelegate, EGORefreshTableHeaderDelegate>
{
・・・・・・・
}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2015/04/28 02:56
2015/04/28 03:00
退会済みユーザー
2015/04/28 03:02
2015/04/28 10:17
退会済みユーザー
2015/04/28 11:34
退会済みユーザー
2015/04/28 11:54
退会済みユーザー
2015/04/28 22:51
退会済みユーザー
2015/04/28 23:02
2015/05/01 01:17
退会済みユーザー
2015/05/01 01:36
2015/05/01 01:53