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"
评论