I am using NSDate + Timeago to set time since now in detailLextLabel and it does not seem to be working I'm not sure why? I am retrieving the message from parse.com
My method:
PFObject *message = [self.messages objectAtIndex:indexPath.row];
cell.textLabel.text = [message objectForKey:@"senderName"];
NSDate *date = [message createdAt];
// I have tried this also
NSDate *date = [message objectForKey:@"createdAt"];
NSString *timeAgoString = [date timeAgo];
cell.detailTextLabel.text = timeAgoString;
I want the detail text label to display ex. 5 mins ago
I'm getting null at the moment and nothing is displaying in detail text label