現在、ユーザーが開始日と終了日を選択できる日付ピッカーが 2 つあります。2つの違いを分または時間で知りたいです。値は、私が想定している 2 つの NSDate 変数に格納されますか? では、2 つの NSDates を減算して float 値を取得するにはどうすればよいでしょうか。どうもありがとうございました。
私の答え
NSTimeInterval timeInseconds1 = [[startTimePicker date] timeIntervalSince1970];
NSTimeInterval timeInseconds2 = [[endTimePicker date] timeIntervalSince1970];
float difference = timeInseconds2 - timeInseconds1;
NSLog(@"%f", difference);