Instance Method インスタンスメソッド

stringFromDate:toDate:

Returns a formatted string based on the time difference between two dates. 2つの日付の間の時間差に基づいて書式設定された文字列を返します。

Declaration 宣言

- (NSString *)stringFromDate:(NSDate *)startDate 
                      toDate:(NSDate *)endDate;

Parameters パラメータ

startDate

The start time. This parameter must not be nil. 開始時間。このパラメータは、nilであってはいけません。

endDate

The end time. This parameter must not be nil. 終了時間。このパラメータは、nilであってはいけません。

Return Value 戻り値

A formatted string representing the specified time information. 指定された時間情報を表している書式設定済み文字列。

Discussion 議論

This method calculates the elapsed time between the startDate and endDate values and uses that information to generate the string. For example, if there is exactly one hour and ten minutes difference between the start and end dates, generating an abbreviated string would result in a string of “1h 10m”. このメソッドは、startDateendDate値の間の経過時間を計算します、そしてその情報を使って文字列を生成します。例えば、正確に1時間と10分の差が開始と終了日付の間にあるならば、生成する省略文字列は “1h 10m” の文字列という結果になるでしょう。

See Also 参照

Formatting Values 書式設定値