日付ピッカーを持つ 2 つのテキスト フィールドを減算する方法を知りたいです。結果をラベルに表示します。例: (25.05.2013) – (17.05.2013) = 1週間と 1日
NSDate *now = [NSDate date];
NSDate *then = self.datepicker.date;
NSTimeInterval howLong = [now timeIntervalSinceDate:then];
NSUInteger w, d;
w = (howLong / 604800);
d =
NSString *str = [NSString stringWithFormat:@" x weeks, y days", w, d];
label1.text = str;