NSFormatter 子类集合 FormatterKit
- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/mattt/FormatterKit
软件介绍
FormatterKit 收集了一系列精心设计的 NSFormatter
子类,例如信息单元,距离和相对时间间隔。每一个 formatter 从他们各自领域的复杂商业逻辑中抽离出来,所以你可以专注用于你的应用程序。
示例代码:
TTTTimeIntervalFormatter *timeIntervalFormatter = [[TTTTimeIntervalFormatter alloc] init]; [timeIntervalFormatter stringForTimeInterval:0]; // "just now" [timeIntervalFormatter stringForTimeInterval:-100]; // "1 minute ago" [timeIntervalFormatter stringForTimeInterval:-8000]; // "2 hours ago" // Turn idiomatic deictic expressions on / off [timeIntervalFormatter stringForTimeInterval:-100000]; // "1 day ago" [timeIntervalFormatter setUsesIdiomaticDeicticExpressions:YES]; [timeIntervalFormatter stringForTimeInterval:-100000]; // "yesterday" // Customize the present tense deictic expression for [timeIntervalFormatter setPresentDeicticExpression:@"seconds ago"]; [timeIntervalFormatter stringForTimeInterval:0]; // "seconds ago" // Expand the time interval for present tense [timeIntervalFormatter stringForTimeInterval:-3]; // "3 seconds ago" [timeIntervalFormatter setPresentTimeIntervalMargin:10]; [timeIntervalFormatter stringForTimeInterval:-3]; // "seconds ago"
Java学习指南(第4版)(上下册)
Patrick Niemeyer、Daniel Leuck / 李强、王建新、吴戈 / 人民邮电出版社 / 2014-7 / 128.00元
《Java学习指南(第4版)(上、下册)》是畅销Java学习指南的最新版,详细介绍了Java 6和Java 7的语言特性和API。本书全面介绍了Java的基础知识,力图通过完备地介绍Java语言、其类库、编程技术以及术语,从而成为一本名符其实的入门级图书。 《Java学习指南(第4版)(上、下册)》加入了从Java 6和Java 7发布以后的变化,包括新的语言功能、并发工具(Fork-Joi......一起来看看 《Java学习指南(第4版)(上下册)》 这本书的介绍吧!
