iphone - flurry in IOS application -


i using flurry in ios application, have many question in :

  1. is file libflurry necessary add ( using flurry analytics)
  2. i have done in myappdelegate.m

    [flurryapi startsession:@"vmykey"];  [flurryapi logallpageviews:self.navcontroller]; 

what see instruction :

    [flurryapi logallpageviews:self.navcontroller]; 
  1. i disable sending data when app down, have done in app delegate : [flurryapi setsessionreportsoncloseenabled:no]; write ?

  2. i wlould create events in app, have done : [flurryapi logevent:@"event_name"]; , put please ? put in each viewcontroller ( viewdidload) ??

  3. what difference between :

    [flurryapi logallpageviews:self.navcontroller];  [flurryapi logevent:@"event_name"] 

thanks answer

[flurryapi logevent:@"event_name"]; 

use logevent count number of times events happen during session of application. can useful measuring how users perform various actions

[flurryapi logallpageviews:navigationcontroller]; 

to enable flurry agent automatically detect , log page view, pass in instance of uinavigationcontroller or uitabbarcontroller logallpageviews. flurry agent create delegate on object detect user interactions. each detected user interaction automatically logged page view. each instance needs passed flurry agent once. multiple uinavigationcontroller or uitabbarcontroller instances can passed flurry agent

[flurryapi setsessionreportsoncloseenabled:(bool)sendsessionreportsonclose]; 

this option on default. when enabled, flurry attempt send session data when app exited when app started. improve speed @ application analytics updated can prolong app termination process due network latency. in cases, network latency can cause app crash.


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -