gpt4 book ai didi

ios - 在Xcode5 SDK 3.03中进行编译时添加Google Analytics(分析)链接器错误

转载 作者:行者123 更新时间:2023-12-03 17:03:07 25 4
gpt4 key购买 nike

我想在我的应用中获取GA。我试图做到这一点:

我使用了适用于iOS v3(​​测试版)的Google Analytics(分析)SDK-https://developers.google.com/analytics/devguides/collection/ios/v3/

我遵循了文档的所有步骤。
也已经尝试过Linker errors when trying to install new Google Analytics 3.0 Beta



在我的AppDelegate.h中

#import <UIKit/UIKit.h>
#import "GAI.h"

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property(nonatomic, strong) id<GAITracker> tracker;
@property (strong, nonatomic) UIWindow *window;

@end


在我的AppDelegate.m中

#import "AppDelegate.h"
#import "GAI.h"

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[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.
id<GAITracker> tracker = [[GAI sharedInstance] trackerWithTrackingId:@"UA-47246605-1"];

[GAI sharedInstance].optOut = YES;
[GAI sharedInstance].trackUncaughtExceptions = YES;
[GAI sharedInstance].dispatchInterval = 0;

return YES;
}


ViewController.h

#import <UIKit/UIKit.h>
#import "GAI.h"
#import "GAITrackedViewController.h"

@interface ViewController : GAITrackedViewController
@end


ViewController.m

#import "ViewController.h"
#import "GAI.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
[super viewDidLoad];
self.screenName = @"Home Screen";

}


我的项目测试的链接: https://www.dropbox.com/s/j3ufrv55xym82nc/TesteAnalytics.zip

最佳答案

Google Analytics(分析)使用CoreData.framework,链接器找不到它。 (NSManagedEntity,NSManagedContext等是CoreData类)

您是否将框架添加到项目中?

关于ios - 在Xcode5 SDK 3.03中进行编译时添加Google Analytics(分析)链接器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21190706/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com