使用NSDate將日期保存到NSString中,但是日期變為000.000。
NSDate* date = [NSDate date];
NSDateFormatter* formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy-MM-dd HH:MM:SS"];
NSString* str = [formatter stringFromDate:date];
NSString*content_AddedTime=str;
NSString *post =[[NSString alloc] init];
post = [NSString stringWithFormat:@"userId=%@&catalogID=%@&content_AddedTime=%@&organizationCode=%@",userId,catalogID,content_AddedTime,organizationCode];
你可以先用NSLog來輸出一下NSDate返回的格式
NSLog(@"current date:%@",date);
根據返回的日期格式來設置正確的formatter