从现在开始详细显示TextLabel iOS

时间:2015-08-22 09:54:55

标签: ios objective-c parse-platform nsdate nstimeinterval

我正在使用NSDate + Timeago从现在开始详细设置TimeLabel 它似乎没有工作我不知道为什么?我正在从parse.com检索邮件

我的方法:

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;

我希望详细文本标签显示ex。 5分钟前

我现在变为空,没有任何内容正在显示详细的文字标签

1 个答案:

答案 0 :(得分:1)

我建议使用此NSDate-TimeAgo。将此扩展包含到项目后,您将能够从日期生成字符串,如下所示:

func resetCell(inCell: UITableViewCell){
    if let cell = inCell {
        cell.contentView = nil;
        cell.removeFromSuperview();
    }
}