iOS 事件记录框架 EventLogger

码农软件 · 软件分类 · 其他(Others) · 2019-07-18 10:43:02

软件介绍

EventLogger 是 iOS 开发中事件记录框架,方便进行事件统计,包括计数事件与计时事件,如:统计某按钮的点击次数,两个事件发生的时间差等,使用简单。

计数事件:

[[EventLogger sharedInstance] addCountEventWithTag:@"click_clean"];

计时事件:

// 开始事件 EventCount2;

[[EventLogger sharedInstance] addCountEventWithTag:@"EventCount2"];

// 记录 EventCount2 从开始至今的时间;

[[EventLogger sharedInstance] addTimeEventPoint:@"e12" withTag:@"TimeEven1" andInfo:nil timeFromPoint:@nil];

// 记录 EventCount2 从 e12 点至今的时间;

[[EventLogger sharedInstance] addTimeEventPoint:@"e13" withTag:@"TimeEven1" andInfo:nil timeFromPoint:@"e12"];

本文地址:https://codercto.com/soft/d/10391.html

Principles of Object-Oriented JavaScript

Principles of Object-Oriented JavaScript

Nicholas C. Zakas / No Starch Press / 2014-2 / USD 24.95

If you've used a more traditional object-oriented language, such as C++ or Java, JavaScript probably doesn't seem object-oriented at all. It has no concept of classes, and you don't even need to defin......一起来看看 《Principles of Object-Oriented JavaScript》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

URL 编码/解码
URL 编码/解码

URL 编码/解码