This can be used in various chat applications, rss feeds, and social apps where you need to have latest feeds with timestamps:
Objective-C
- (NSString *)getHistoricTimeText:(NSDate *)since
{
NSString *str;
NSTimeInterval interval = [[NSDate date] timeIntervalSinceDate:since];
if(in...