我有一个关于 IOS 中的 Google Analytics 和事件跟踪的问题。在我的应用程序中,我有一个 tableView(下面显示的一些代码),用户可以在其中选择不同的书籍。我希望能够跟踪最常用的书籍。
但是您如何跟踪动态事件?在 Google 分析门户中,您必须指定标签名称?但是如果标签名称几乎可以是任何东西呢?我真的需要为可以在应用程序中选择的所有 40 本书创建 40 个不同的事件吗?是否有可能以一种好的方式进行跟踪?感谢所有的帮助/问候
我正在谈论的代码:withLabel:self.getCurrentBookName <--- 几乎可以产生任何书名。
- (UITableViewCell *)tableView:(UITableView *)pTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *cellName = @"";
UITableViewCell *cell = nil;
if (indexPath.section == 0)
{
if (indexPath.row == 0)
{
cellName = @"BookCell";
cell = [pTableView dequeueReusableCellWithIdentifier:cellName];
UILabel *bookField = (UILabel *)[cell viewWithTag:1];
bookField.text = [self getCurrentBookName];
[self.tracker sendEventWithCategory:@"App Setting"
withAction:@"User selects book:"
withLabel:self.getCurrentBookName
withValue:[NSNumber numberWithInt:100]];
}
}