我需要创建一个等于的String, 当前年 - 月 - 日 - 小时(24) - 分钟 - 秒 - 毫秒。文件类型
这将插入此NSstring
NSString *filename = [[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"image%d", imageNo] ofType:@"png"];
答案 0 :(得分:2)
试试这个
NSDateFormatter *df = [NSDateFormatter new];
df.dateFormat = @"yyyy-MM-dd-HH-mm-ss-S";
NSLog(@"%@",[df stringFromDate:[NSDate date]]);