Human friendly date descriptions with NSDate on iOS

前端 未结 6 1675
忘了有多久
忘了有多久 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:04

    Full code snippet for human readable dates in Xcode:

        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setTimeStyle:NSDateFormatterNoStyle];
        [dateFormatter setDateStyle:NSDateFormatterMediumStyle];
    
        NSLocale *locale = [NSLocale currentLocale];
        [dateFormatter setLocale:locale];
    
        [dateFormatter setDoesRelativeDateFormatting:YES];
    

提交回复
热议问题