API と通信するには、Date から DDMMYYY 日付を送信する必要があります。
NSDateComponents *dateComponents; NSCalendar *グレゴリアン; NSDate *日付;
gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
dateComponents = [[NSDateComponents alloc] init];
self.date = [gregorian dateByAddingComponents:dateComponents toDate:[NSDate date] options:0];
[dateComponents day] などを使用する必要がありますか? PHPのようにそのタスクを実行するのに役立つ方法はありますか?