~rockstar/ubuntuone-ios-music/remote-controls

« back to all changes in this revision

Viewing changes to Music/View Controllers/PlayerViewController.m

  • Committer: Tarmac
  • Author(s): Paul Hummer
  • Date: 2013-02-12 23:00:55 UTC
  • mfrom: (240.6.3 flurry-analytics)
  • Revision ID: tarmac-20130212230055-1j0h3uhfqyi9dem6
Add Flurry analytics

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
    [self updateCurrentSong];
42
42
    
43
43
    heartbeat = [NSTimer scheduledTimerWithTimeInterval:0.5f target:self selector:@selector(heartbeat:) userInfo:nil repeats:YES];
 
44
    [Flurry logEvent:EVENT_PLAYER_VIEW timed:YES];
44
45
}
45
46
 
46
47
- (void)viewDidDisappear:(BOOL)animated {
51
52
    
52
53
    [heartbeat invalidate];
53
54
    heartbeat = nil;
 
55
    
 
56
    [Flurry endTimedEvent:EVENT_PLAYER_VIEW withParameters:nil];
54
57
}
55
58
 
56
59
- (void)viewDidUnload {