我是 Google Analytics 的新手,并尝试在用户单击我的 IOS 应用程序中的 tableView 时实现跟踪事件。我要跟踪的是用户在 tableView 中单击的“单元格”的名称。我做错了什么,或者更确切地说,我必须采取哪些步骤才能使其正常工作?使用此示例中实现的代码,我看不到任何事件轨迹:
我是否必须在我的 GA 中进行任何调整才能跟踪这一点?应该在哪里跟踪信息?我很困惑:S /问候
- (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]];
}
}