seconds
The number of seconds from the current date and time for the new date. Use a negative value to specify a date before the current date.
然而,这段代码给出了 2148 年的日期:
#import <Foundation/Foundation.h>
#import <stdlib.h>
int main(int argc, const char * argv[])
{
@autoreleasepool {
for(int i = 0; i < 30; i++) {
NSDate* date = [NSDate dateWithTimeIntervalSinceNow:(NSTimeInterval)-((u_int32_t)i * 12 * 60 * 60 + arc4random_uniform(8 * 60 * 60))];
NSLog(@"%@", date);
}
}
return 0;
}
它应该从最近的过去生成半随机的日期和时间。