As a benchmarking platform in the field of mobile application statistics, flurry has a very comprehensive range of functions, not only for data statistics and analysis functions, but also for app Circle advertising and promotion platform functions. It can be said that flurry is currently the most comprehensive mobile application statistical analysis products, in addition to statistics in a single application of various data indicators, but also to provide cross-application conversion statistics, such as for enterprise-level user capabilities. Flurry is also in a leading position, simply from the data statistics function of mobile applications. Its function module is set up reasonably, the analysis dimension is comprehensive, the analysis flow is easy to understand, is the strongest.
1. Create a project
Register and download the SDK first
Once registered, the app is created, and the app's information is used only for flurry management background, all of which do not need to be applied to the actual name. Once created, get the app ID .
2. SDK Integration
Add a Flurry folder (containing Flurry.h, libflurry_6.3.0.a 2 files) to the project
Link Birnary with libraries add 2 libraries
Security.framework
Systemoconfiguration.framework
Import Flurry.h in Project name. pch
-(BOOL) Application: (uiapplication*) Application didfinishlaunchingwithoptions: (nsdictionary*) launchOptions{ Flurrry statistics are followed for the requested ID [Flurry startsession:@ "12X6CR8F2J69CDP9JZSR"];}
This completes the SDK integration
3. Statistical items
3.1. Executes in the executed method, and the number of times that the event executes is logged in the background event.
3.2, if you need to record a page click the number of different buttons distribution can be implemented
3.3, Statistics users on a page of time
Start [Flurry logevent:@ "Loginviewcontrol" timed:yes];//end [Flurry endtimedevent:@ "Loginviewcontrol" Withparameters:nil];
4. View Results
View the Event tab in the background to view the events defined
6-hour delay in clicking an event
[IOS] Integrated Flurry mobile app statistics platform