Human friendly date descriptions with NSDate on iOS

前端 未结 6 1679
忘了有多久
忘了有多久 2020-12-14 10:40

I want to display NSDates in a \"human-friendly way\", such as \"last week\", or \"a few days ago\". Something similar to Pretty Time for Java.

What\'s the best way

6条回答
  •  轮回少年
    2020-12-14 11:00

    On iOS 4 and later, use the doesRelativeDateFormatting property:

    NSDateFormatter *dateFormatter = ...;
    dateFormatter.doesRelativeDateFormatting = YES;
    

提交回复
热议问题