我是ios的新手。我想在UITableViewCell中显示并保存当前的日期和时间。
答案 0 :(得分:4)
在您的单元格中添加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