Мне нужно отправить дату DDMMYYY из даты, чтобы связаться с API.
NSDateComponents * dateComponents;
NSCalendar * gregorian;
NSDate * date;
gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
dateComponents = [[NSDateComponents alloc] init];
self.date = [gregorian dateByAddingComponents:dateComponents toDate:[NSDate date] options:0];
Должен ли я использовать [dateComponents day] и так далее? Есть ли способ, который может помочь мне выполнить эту задачу, как в PHP?