gpt4 book ai didi

ios - 获取耗时作为 UILabel (objective-c)

转载 作者:行者123 更新时间:2023-11-29 02:07:20 24 4
gpt4 key购买 nike

我想在我的单元格中添加一个自定义 UILabel 来显示项目发布的时间。那里有任何关于简单操作方法的好链接吗?

我想在 Storyboard 中为我的单元格添加一个标签,为其分配一个标签 22,然后以编程方式计算自用户发布项目以来的时间。

编辑:我不关心我的nil值,所以我已将代码更改为以下。现在有人可以给我指出添加时间戳的正确方向或者给我扔骨头吗?非常感谢

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *identifier = @"cell";


UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];

// Configure the cell...

PFObject *group = [self.groups objectAtIndex:indexPath.row];

UILabel *nameLabel = (UILabel*) [cell viewWithTag:101];
nameLabel.text = [group objectForKey:@"name"];
UILabel *usernameLabel = (UILabel*) [cell viewWithTag:103];
usernameLabel.text = [group objectForKey:@"creatorName"];


return cell;
}

最佳答案

postedDate = // NSDate object of your postedDate
[postedDate timeIntervalSinceDate:[NSDate date];

这将返回日期之间的秒数,然后只需使用一些数学运算即可得到分钟数

关于ios - 获取耗时作为 UILabel (objective-c),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29641957/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com