format a NSDate to DDMMYYYY?

前端 未结 7 498
面向向阳花
面向向阳花 2021-01-13 18:12

I have to send a DDMMYYY date from a Date to communicate with an API.

NSDateComponents *dateComponents; NSCalendar *gregorian; NSDate *date;

gregoria         


        
7条回答
  •  不知归路
    2021-01-13 18:34

    Try this code:

    NSDateFormatter* dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
    [dateFormatter setLocale:[[[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"] autorelease]];
    [dateFormatter setDateFormat:@"ddMMyyyy"];
    NSDate *current = [NSDate date];
    NSString *currentstring = [dateFormatter stringFromDate:current]
    

提交回复
热议问题