-2

我是 ios 的新手。我想在 UITableViewCell 中显示和保存当前日期和时间。

4

1 回答 1

4

将 a 添加UILabel到您的单元格,然后使用以下代码:

NSDate *currDate = [NSDate date];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
[dateFormatter setDateFormat:@"dd.MM.YY HH:mm:ss"];
NSString *dateString = [dateFormatter stringFromDate:currDate];

yourLabel.text=dateString
于 2013-05-30T11:35:01.877 回答