-3

i have one date like '2014-11-16T15:42:14' in server and now i want to convert this date into such formate like '1 day and 2 hours ago'. can any body help me how can i solve this?

I wholeheartedly accept your down votes.(Please explain me the reason for you down vote such that i will not repeat my mistake).

Bandish Dave
  • 791
  • 1
  • 7
  • 27

1 Answers1

1

Look at that example that will help you definately.

Copied From Here

NSCalendar *calendar = [NSCalendar currentCalendar];
NSDate *date = [NSDate date];

NSDateComponents *components = [[NSDateComponents alloc] init];
[components setWeekOfYear:1];
[components setHour:12];

NSLog(@"1 week and twelve hours from now: %@", [calendar dateByAddingComponents:components toDate:date options:0]);
Danial Hussain
  • 2,488
  • 18
  • 38