Type Method 型メソッド

date

Creates and returns a new date object set to the current date and time. 現在の日付と時刻に設定される新しい日付オブジェクトを作成して返します。

Declaration 宣言

+ (instancetype)date;

Return Value 戻り値

A new date object set to the current date and time. 現在の日付と時刻に設定される新しい日付オブジェクト。

Discussion 議論

This method uses the default initializer method for the class, init. このメソッドはそのクラスの省略時の初期化メソッド、initを使います。

The following code sample shows how to use date to get the current date: 以下のコード見本は、dateを使って現在の日付を得る方法を示します:


NSDate *today = [NSDate date];

See Also 参照

Creating a Date 日付の作成