iOS 事件记录框架 EventLogger
- 授权协议: Apache
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/yourtion/EventLogger
- 软件文档: https://github.com/yourtion/EventLogger
软件介绍
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"];
程序设计抽象思想
Eric S.Roberts、闪四清 / 闪四清 / 清华大学出版社 / 2005-6 / 78.00元
本书全面介绍了数据结构的基础内容。介绍了多个库包,可用于简化编程流程;详细讨论了递归编程的用法,包括大量难度各异的编程示例和练习。一起来看看 《程序设计抽象思想》 这本书的介绍吧!
