我有这段代码,但它只显示 hh:mm。我想显示 yyyy、mm 和 dd。我想在时间上增加 1 小时,因为它会显示某件事什么时候会被激活。
有人能告诉我这是怎么做到的吗?:)
-(IBAction)timeStampPressed:(id)sender{
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setTimeStyle: NSDateFormatterShortStyle];
NSString *currentTime = [dateFormatter stringFromDate: [NSDate date]];
NSLog(@"time: %@",currentTime);
}